diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2015-09-03 02:52:01 +0300 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2015-09-07 20:14:50 +0300 |
commit | 20ddbe4f594f78f7f1095050aabd91882dde0670 (patch) | |
tree | cec646466acf1470780105c743e72d52f5c691ba /Gruntfile.js | |
parent | fa8a5a90e157f26a54ce50b4e8bb8f2f4bce3500 (diff) | |
download | jquery-20ddbe4f594f78f7f1095050aabd91882dde0670.tar.gz jquery-20ddbe4f594f78f7f1095050aabd91882dde0670.zip |
Build: Update jscs and lint files
Ref 10fdad742a2a6aa9f0e00b3e04fc5264797c53c7
Fixes gh-2056
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index eaf0cf7bb..d5611904a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -20,7 +20,7 @@ module.exports = function( grunt ) { // But our modules can delete srcHintOptions.onevar; - grunt.initConfig({ + grunt.initConfig( { pkg: grunt.file.readJSON( "package.json" ), dst: readOptionalJSON( "dist/.destination.json" ), "compare_size": { @@ -107,7 +107,12 @@ module.exports = function( grunt ) { gruntfile: "Gruntfile.js", // Check parts of tests that pass - test: [ "test/data/testrunner.js", "test/unit/animation.js", "test/unit/tween.js" ], + test: [ + "test/data/testrunner.js", + "test/unit/animation.js", + "test/unit/tween.js", + "test/unit/wrap.js" + ], build: "build" }, testswarm: { @@ -160,7 +165,7 @@ module.exports = function( grunt ) { } } } - }); + } ); // Load grunt tasks from NPM packages require( "load-grunt-tasks" )( grunt ); |