Move static new stuff task to gulp

This commit is contained in:
Blade Barringer
2015-09-04 15:32:08 -05:00
parent cfae45a5f7
commit bc9c12f253
3 changed files with 14 additions and 13 deletions

View File

@@ -9,10 +9,10 @@ gulp.task('build', () => {
}
});
gulp.task('build:dev', (done) => {
gulp.task('build:dev', ['prepare:staticNewStuff'], (done) => {
gulp.start('grunt-build:dev', done);
});
gulp.task('build:prod', (done) => {
gulp.task('build:prod', ['prepare:staticNewStuff'], (done) => {
gulp.start('grunt-build:prod', done);
});