Build: run jshint and jscs on release scripts

This commit is contained in:
Timmy Willison 2014-05-23 12:45:19 -04:00
parent 97cbab51e2
commit b80700c75f
2 changed files with 3 additions and 4 deletions

View File

@ -82,8 +82,7 @@ module.exports = function( grunt ) {
jshint: { jshint: {
all: { all: {
src: [ src: [
"src/**/*.js", "Gruntfile.js", "test/**/*.js", "build/tasks/*", "src/**/*.js", "Gruntfile.js", "test/**/*.js", "build/**/*.js"
"build/{bower-install,release-notes,release}.js"
], ],
options: { options: {
jshintrc: true jshintrc: true
@ -100,6 +99,7 @@ module.exports = function( grunt ) {
// Right know, check only test helpers // Right know, check only test helpers
test: [ "test/data/testrunner.js", "test/data/testinit.js" ], test: [ "test/data/testrunner.js", "test/data/testinit.js" ],
release: "build/*.js",
tasks: "build/tasks/*.js" tasks: "build/tasks/*.js"
}, },
testswarm: { testswarm: {

View File

@ -53,4 +53,3 @@ http.request({
}); });
}).end(); }).end();