Skip to content

Commit 7e5ef76

Browse files
chore(GruntFile): fix whitespace in lists
1 parent 1cb9630 commit 7e5ef76

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Gruntfile.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ module.exports = function(grunt) {
222222
},
223223
"promises-aplus-adapter": {
224224
dest:'tmp/promises-aplus-adapter++.js',
225-
src:['src/ng/q.js','lib/promises-aplus/promises-aplus-test-adapter.js']
225+
src:['src/ng/q.js', 'lib/promises-aplus/promises-aplus-test-adapter.js']
226226
}
227227
},
228228

@@ -330,7 +330,7 @@ module.exports = function(grunt) {
330330

331331

332332
//alias tasks
333-
grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package','test:unit','test:promises-aplus', 'tests:docs', 'test:protractor']);
333+
grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package', 'test:unit', 'test:promises-aplus', 'tests:docs', 'test:protractor']);
334334
grunt.registerTask('test:jqlite', 'Run the unit tests with Karma' , ['tests:jqlite']);
335335
grunt.registerTask('test:jquery', 'Run the jQuery unit tests with Karma', ['tests:jquery']);
336336
grunt.registerTask('test:modules', 'Run the Karma module tests with Karma', ['build', 'tests:modules']);
@@ -340,11 +340,11 @@ module.exports = function(grunt) {
340340
grunt.registerTask('test:travis-protractor', 'Run the end to end tests with Protractor for Travis CI builds', ['connect:testserver', 'protractor:travis']);
341341
grunt.registerTask('test:ci-protractor', 'Run the end to end tests with Protractor for Jenkins CI builds', ['webdriver', 'connect:testserver', 'protractor:jenkins']);
342342
grunt.registerTask('test:e2e', 'Alias for test:protractor', ['test:protractor']);
343-
grunt.registerTask('test:promises-aplus',['build:promises-aplus-adapter','shell:promises-aplus-tests']);
343+
grunt.registerTask('test:promises-aplus',['build:promises-aplus-adapter', 'shell:promises-aplus-tests']);
344344

345-
grunt.registerTask('minify', ['bower','clean', 'build', 'minall']);
345+
grunt.registerTask('minify', ['bower', 'clean', 'build', 'minall']);
346346
grunt.registerTask('webserver', ['connect:devserver']);
347-
grunt.registerTask('package', ['bower', 'validate-angular-files','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
347+
grunt.registerTask('package', ['bower', 'validate-angular-files', 'clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
348348
grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict', 'jshint', 'jscs']);
349349
grunt.registerTask('default', ['package']);
350350
};

0 commit comments

Comments
 (0)