We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f2e2e3 commit 481f094Copy full SHA for 481f094
gulpfile.js
@@ -8,7 +8,7 @@ gulp.task('clean', function (callback) {
8
del(['dist'], callback);
9
});
10
11
-gulp.task('build', function () {
+gulp.task('build', ['clean'], function () {
12
gulp.src('src/angular-input-modified.js')
13
.pipe(rename('angular-input-modified.js'))
14
.pipe(gulp.dest('dist'))
@@ -19,5 +19,4 @@ gulp.task('build', function () {
19
;
20
21
22
-// @todo: make sure build is called AFTER the clean.
23
-gulp.task('default', ['clean', 'build']);
+gulp.task('default', ['build']);
0 commit comments