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

Commit ed7777d

Browse files
chore(GruntFile): fix whitespace in lists
1 parent a164873 commit ed7777d

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
@@ -233,7 +233,7 @@ module.exports = function(grunt) {
233233
},
234234
"promises-aplus-adapter": {
235235
dest:'tmp/promises-aplus-adapter++.js',
236-
src:['src/ng/q.js','lib/promises-aplus/promises-aplus-test-adapter.js']
236+
src:['src/ng/q.js', 'lib/promises-aplus/promises-aplus-test-adapter.js']
237237
}
238238
},
239239

@@ -342,7 +342,7 @@ module.exports = function(grunt) {
342342

343343

344344
//alias tasks
345-
grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package','test:unit','test:promises-aplus', 'tests:docs', 'test:protractor']);
345+
grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package', 'test:unit', 'test:promises-aplus', 'tests:docs', 'test:protractor']);
346346
grunt.registerTask('test:jqlite', 'Run the unit tests with Karma' , ['tests:jqlite']);
347347
grunt.registerTask('test:jquery', 'Run the jQuery unit tests with Karma', ['tests:jquery']);
348348
grunt.registerTask('test:modules', 'Run the Karma module tests with Karma', ['build', 'tests:modules']);
@@ -352,11 +352,11 @@ module.exports = function(grunt) {
352352
grunt.registerTask('test:travis-protractor', 'Run the end to end tests with Protractor for Travis CI builds', ['connect:testserver', 'protractor:travis']);
353353
grunt.registerTask('test:ci-protractor', 'Run the end to end tests with Protractor for Jenkins CI builds', ['webdriver', 'connect:testserver', 'protractor:jenkins']);
354354
grunt.registerTask('test:e2e', 'Alias for test:protractor', ['test:protractor']);
355-
grunt.registerTask('test:promises-aplus',['build:promises-aplus-adapter','shell:promises-aplus-tests']);
355+
grunt.registerTask('test:promises-aplus',['build:promises-aplus-adapter', 'shell:promises-aplus-tests']);
356356

357-
grunt.registerTask('minify', ['bower','clean', 'build', 'minall']);
357+
grunt.registerTask('minify', ['bower', 'clean', 'build', 'minall']);
358358
grunt.registerTask('webserver', ['connect:devserver']);
359-
grunt.registerTask('package', ['bower', 'validate-angular-files','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
359+
grunt.registerTask('package', ['bower', 'validate-angular-files', 'clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']);
360360
grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict', 'jshint', 'jscs']);
361361
grunt.registerTask('default', ['package']);
362362
};

0 commit comments

Comments
 (0)