Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit ffee742

Browse files
chore(GruntFile): fix whitespace in lists
1 parent 1346b0a commit ffee742

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
@@ -209,7 +209,7 @@ module.exports = function(grunt) {
209209
},
210210
"promises-aplus-adapter": {
211211
dest:'tmp/promises-aplus-adapter++.js',
212-
src:['src/ng/q.js','lib/promises-aplus/promises-aplus-test-adapter.js']
212+
src:['src/ng/q.js', 'lib/promises-aplus/promises-aplus-test-adapter.js']
213213
}
214214
},
215215

@@ -296,7 +296,7 @@ module.exports = function(grunt) {
296296

297297

298298
//alias tasks
299-
grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package','test:unit','test:promises-aplus', 'tests:docs', 'test:protractor']);
299+
grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package', 'test:unit', 'test:promises-aplus', 'tests:docs', 'test:protractor']);
300300
grunt.registerTask('test:jqlite', 'Run the unit tests with Karma' , ['tests:jqlite']);
301301
grunt.registerTask('test:jquery', 'Run the jQuery unit tests with Karma', ['tests:jquery']);
302302
grunt.registerTask('test:modules', 'Run the Karma module tests with Karma', ['tests:modules']);
@@ -306,11 +306,11 @@ module.exports = function(grunt) {
306306
grunt.registerTask('test:travis-protractor', 'Run the end to end tests with Protractor for Travis CI builds', ['connect:testserver', 'protractor:travis']);
307307
grunt.registerTask('test:ci-protractor', 'Run the end to end tests with Protractor for Jenkins CI builds', ['webdriver', 'connect:testserver', 'protractor:jenkins']);
308308
grunt.registerTask('test:e2e', 'Alias for test:protractor', ['test:protractor']);
309-
grunt.registerTask('test:promises-aplus',['build:promises-aplus-adapter','shell:promises-aplus-tests']);
309+
grunt.registerTask('test:promises-aplus',['build:promises-aplus-adapter', 'shell:promises-aplus-tests']);
310310

311-
grunt.registerTask('minify', ['bower','clean', 'build', 'minall']);
311+
grunt.registerTask('minify', ['bower', 'clean', 'build', 'minall']);
312312
grunt.registerTask('webserver', ['connect:devserver']);
313-
grunt.registerTask('package', ['bower', 'validate-angular-files','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
313+
grunt.registerTask('package', ['bower', 'validate-angular-files', 'clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
314314
grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict', 'jshint', 'jscs']);
315315
grunt.registerTask('default', ['package']);
316316
};

0 commit comments

Comments
 (0)