Skip to content

Commit ea0ea2d

Browse files
author
Brian Kotek
committed
mgechev#1614 - Add clean.once to build.dev.js task to ensure that the build starts in a clean state.
1 parent 83ff9dd commit ea0ea2d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gulpfile.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ loadTasks(Config.PROJECT_TASKS_DIR);
1313
// --------------
1414
// Build dev.
1515
gulp.task('build.dev', (done: any) =>
16-
runSequence(//'clean.dev',
16+
runSequence('clean.once',
1717
// 'tslint',
1818
'build.assets.dev',
1919
'build.html_css',
@@ -75,6 +75,7 @@ gulp.task('build.prod.exp', (done: any) =>
7575
// Build test.
7676
gulp.task('build.test', (done: any) =>
7777
runSequence('clean.once',
78+
// 'tslint',
7879
'build.assets.dev',
7980
'build.html_css',
8081
'build.js.dev',

0 commit comments

Comments
 (0)