diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-03-12 10:35:15 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-03-12 10:35:15 +0100 |
commit | 4752ee9a6c127eed6bbe0958c68426ee34f2c581 (patch) | |
tree | fd988e0e35ce146a20c97bc37fc4bd983cf309c7 | |
parent | 13be9205e1a0d227ef44ab28aed6d0e18aa5cf69 (diff) | |
download | jquery-ui-4752ee9a6c127eed6bbe0958c68426ee34f2c581.tar.gz jquery-ui-4752ee9a6c127eed6bbe0958c68426ee34f2c581.zip |
Build: Include grunt tasks files in jscs task
-rw-r--r-- | Gruntfile.js | 2 | ||||
-rw-r--r-- | build/tasks/testswarm.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 08e89f90b..c312e313e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -160,7 +160,7 @@ grunt.initConfig({ ui: [ "ui/*.js", "!ui/datepicker.js", "!ui/sortable.js", "!ui/resizable.js" ], // TODO enable this once we have a tool that can help with fixing formatting of existing files // tests: "tests/unit/**/*.js", - grunt: "Gruntfile.js" + grunt: [ "Gruntfile.js", "build/tasks/*.js" ] }, uglify: minify, htmllint: { diff --git a/build/tasks/testswarm.js b/build/tasks/testswarm.js index d7d99fd61..78cba98f8 100644 --- a/build/tasks/testswarm.js +++ b/build/tasks/testswarm.js @@ -63,7 +63,7 @@ function submit( commit, runs, configFile, extra, done ) { name: "Commit <a href='" + commitUrl + "'>" + commit.substr( 0, 10 ) + "</a>" + extra, runs: runs, runMax: config.runMax, - browserSets: ["popular-ui"] + browserSets: [ "popular-ui" ] }, function( error, passed ) { if ( error ) { grunt.log.error( error ); |