Build: Include grunt tasks files in jscs task

This commit is contained in:
Jörn Zaefferer 2014-03-12 10:35:15 +01:00
parent 13be9205e1
commit 4752ee9a6c
2 changed files with 2 additions and 2 deletions

View File

@ -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: {

View File

@ -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 );