Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Add most minimal platform build for x-tag compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Oct 23, 2013
1 parent 295396e commit bcf1dc3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
/test.bat

/build/shadowdom.conditional.js
platform.min*
platform.native*
platform.sandbox*
platform.concat*
*.min.js*
*.concat.js*
build.bat
4 changes: 4 additions & 0 deletions build-lite.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[
"../HTMLImports/build.json",
"../CustomElements/build.json"
]
8 changes: 8 additions & 0 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ module.exports = function(grunt) {
}
}
},
concat: {
lite: {
files: {
'platform-lite.concat.js': readManifest('build-lite.json', [tmp.path])
}
}
},
uglify: {
options: {
banner: grunt.file.read('LICENSE'),
Expand Down Expand Up @@ -96,5 +103,6 @@ module.exports = function(grunt) {
grunt.registerTask('docs', ['yuidoc']);
grunt.registerTask('test', ['override-chrome-launcher', 'karma:platform']);
grunt.registerTask('test-buildbot', ['override-chrome-launcher', 'karma:buildbot']);
grunt.registerTask('build-lite', ['gen_license', 'concat', 'clean_license']);
};

0 comments on commit bcf1dc3

Please sign in to comment.