aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2015-09-03 02:52:01 +0300
committerOleg Gaidarenko <markelog@gmail.com>2015-09-07 20:14:50 +0300
commit20ddbe4f594f78f7f1095050aabd91882dde0670 (patch)
treecec646466acf1470780105c743e72d52f5c691ba /Gruntfile.js
parentfa8a5a90e157f26a54ce50b4e8bb8f2f4bce3500 (diff)
downloadjquery-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.js11
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 );