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

Commit 834096e

Browse files
committed
refactor(gulpfile): remove redundant task dependencies
1 parent 7771ccb commit 834096e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: gulpfile.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var Router = require('routes-router');
99
var main = require('./package.json').main;
1010

1111
gulp.task('watch', function() {
12-
gulp.watch(['./*.js'], ['browserify', 'protractor']);
12+
gulp.watch(['./*.js'], ['protractor']);
1313
});
1414

1515
gulp.task('browserify', function() {
@@ -53,6 +53,6 @@ gulp.task('webdriver', function (cb) {
5353
exec('./node_modules/.bin/webdriver-manager update', cb);
5454
});
5555

56-
gulp.task('test', ['webdriver', 'protractor']);
56+
gulp.task('test', ['protractor']);
5757
gulp.task('build', ['browserify']);
58-
gulp.task('default', ['build', 'test']);
58+
gulp.task('default', ['test']);

0 commit comments

Comments
 (0)