diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-07-10 12:00:26 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-07-10 12:01:20 -0400 |
commit | 40d488137384343532eb8d7639672adf1d97926d (patch) | |
tree | d1fed5748aa19bc9ae342f623f15aff522c88508 /Gruntfile.js | |
parent | d355140e271644c6488a63129f9b187c27246f32 (diff) | |
download | jquery-40d488137384343532eb8d7639672adf1d97926d.tar.gz jquery-40d488137384343532eb8d7639672adf1d97926d.zip |
Include Sizzle and Qunit with bower. Fixes #14118.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 311e22d8e..fc9fbb462 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -38,7 +38,7 @@ module.exports = function( grunt ) { selector: { destFile: "src/selector-sizzle.js", apiFile: "src/sizzle-jquery.js", - srcFile: "src/sizzle/dist/sizzle.js" + srcFile: "bower_components/sizzle/dist/sizzle.js" }, build: { all: { @@ -579,13 +579,12 @@ module.exports = function( grunt ) { // Load grunt tasks from NPM packages grunt.loadNpmTasks("grunt-compare-size"); grunt.loadNpmTasks("grunt-git-authors"); - grunt.loadNpmTasks("grunt-update-submodules"); grunt.loadNpmTasks("grunt-contrib-watch"); grunt.loadNpmTasks("grunt-contrib-jshint"); grunt.loadNpmTasks("grunt-contrib-uglify"); // Default grunt - grunt.registerTask( "default", [ "update_submodules", "selector", "build:*:*", "jshint", "pre-uglify", "uglify", "post-uglify", "dist:*", "compare_size" ] ); + grunt.registerTask( "default", [ "selector", "build:*:*", "jshint", "pre-uglify", "uglify", "post-uglify", "dist:*", "compare_size" ] ); // Short list as a high frequency watch task grunt.registerTask( "dev", [ "selector", "build:*:*", "jshint" ] ); |