Update gulpfile.js

pull/1350/head^2
Jamie 7 years ago committed by GitHub
parent c47db8a659
commit f3522920ab

@ -270,7 +270,7 @@ gulp.task('libs')
gulp.task('copy', ['lib', 'libcss', 'libfonts', 'libimages', 'npm', 'modules']);
gulp.task('compile', ['sass']);
gulp.task('build', callback => runSequence('copy', 'compile', callback));
gulp.task('full', callback => runSequence('clean', 'build', callback));
gulp.task('full', callback => runSequence('build', callback));
// Use this in a build server environment to compile and bundle everything
gulp.task('publish', callback => runSequence('fullvar', 'full', 'typescript', 'bundle', callback));
@ -279,4 +279,4 @@ gulp.task('publish', callback => runSequence('fullvar', 'full', 'typescript', 'b
gulp.task('watch', function () {
gulp.watch(paths.sass.src, ['sass']);
gulp.watch('./Styles/**/*.css', ['libcss']); // legacy css
});
});

Loading…
Cancel
Save