Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 9aa7032

Browse files
committed
Remove bower task
1 parent cc4c195 commit 9aa7032

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

Gruntfile.js

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,6 @@ module.exports = function(grunt) {
88
grunt.loadNpmTasks('grunt-karma');
99
grunt.loadNpmTasks('grunt-conventional-changelog');
1010

11-
grunt.registerTask('bower', 'Install Bower packages.', function () {
12-
var done = this.async();
13-
14-
bower.commands.install()
15-
.on('log', function (result) {
16-
grunt.log.ok('bower: ' + result.id + ' ' + result.data.endpoint.name);
17-
})
18-
.on('error', grunt.fail.warn.bind(grunt.fail))
19-
.on('end', done);
20-
});
21-
2211
grunt.initConfig({
2312
karma: {
2413
options: {
@@ -81,7 +70,7 @@ module.exports = function(grunt) {
8170
});
8271

8372
grunt.registerTask('default', ['test']);
84-
grunt.registerTask('build', ['bower', 'clean', 'ngTemplateCache', 'concat', 'copy']);
73+
grunt.registerTask('build', ['clean', 'ngTemplateCache', 'concat', 'copy']);
8574
grunt.registerTask('test', ['build', 'karma:once']);
8675
grunt.registerTask('test:watch', ['build', 'karma:watch']);
8776
grunt.registerTask('test:travis', ['build', 'karma:travis']);

0 commit comments

Comments
 (0)