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

Commit

Permalink
Integrate polymer-gestures
Browse files Browse the repository at this point in the history
Remove PointerEvents and PointerGestures
  • Loading branch information
dfreedm committed Apr 14, 2014
1 parent b0532e9 commit 3ee3a6f
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 5 deletions.
20 changes: 20 additions & 0 deletions build-native.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[
"src/patches-shadowdom-native.js",

"src/lang.js",
"src/dom.js",
"src/template.js",
"src/inspector.js",
"src/unresolved.js",
"src/module.js",
"src/microtask.js",
"src/url.js",

"src/loader.js",
"src/styleloader.js",

"../polymer-gestures/build.json",

"../polymer-expressions/build.json",
"src/patches-mdv.js"
]
3 changes: 1 addition & 2 deletions build.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
"src/loader.js",
"src/styleloader.js",

"../PointerEvents/build.json",
"../PointerGestures/build.json",
"../polymer-gestures/build.json",

"../polymer-expressions/build.json",
"src/patches-mdv.js"
Expand Down
12 changes: 10 additions & 2 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ module.exports = function(grunt) {
files: {
'build/platform.js': 'build/platform.concat.js'
}
},
nativeOnly: {
options: {
banner: grunt.file.read('banner.txt') + '//@version <%= buildversion %>\n'
},
files: {
'build/platform.native.js': readManifest('build-native.json')
}
}
},
audit: {
Expand All @@ -67,8 +75,7 @@ module.exports = function(grunt) {
'../CustomElements',
'../HTMLImports',
'../NodeBind',
'../PointerEvents',
'../PointerGestures',
'../polymer-gestures',
'../ShadowDOM',
'../TemplateBinding',
'../WeakMap',
Expand Down Expand Up @@ -129,5 +136,6 @@ module.exports = function(grunt) {
grunt.registerTask('test-build-cr', ['minify', 'stash', 'karma:buildbot', 'restore']);
grunt.registerTask('test-buildbot', ['override-chrome-launcher', 'karma:buildbot', 'test-build-cr']);
grunt.registerTask('build-lite', ['concat:lite']);
grunt.registerTask('build-native', ['version', 'uglify:nativeOnly']);
};

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"chai": "*",
"grunt": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-uglify": "~0.3",
"grunt-contrib-uglify": "^0.4.0",
"grunt-contrib-yuidoc": "*",
"grunt-karma": "*",
"karma-mocha": "*",
Expand Down

0 comments on commit 3ee3a6f

Please sign in to comment.