2016-02-28 00:45:44 +08:00
|
|
|
import gulp from 'gulp';
|
|
|
|
import PATHS from './../helpers/src-paths';
|
2016-02-28 01:07:52 +08:00
|
|
|
import helpers from './../helpers/gulp-helpers';
|
2016-02-28 00:45:44 +08:00
|
|
|
|
2017-04-29 22:52:12 +08:00
|
|
|
const { buildES6 } = helpers;
|
2016-02-28 00:45:44 +08:00
|
|
|
|
2017-04-29 22:52:12 +08:00
|
|
|
gulp.task('build-static-not-js', () => gulp.src([PATHS.APP_STATIC_ALL, '!**/*.js'])
|
2017-11-14 08:05:01 -05:00
|
|
|
.pipe(gulp.dest(PATHS.APP_STATIC_DEST)));
|
2016-02-28 00:45:44 +08:00
|
|
|
|
2017-04-29 22:52:12 +08:00
|
|
|
gulp.task('build-static-js', done => buildES6(PATHS.APP_STATIC_JS, PATHS.APP_STATIC_DEST, done));
|
2016-02-28 00:45:44 +08:00
|
|
|
|
|
|
|
gulp.task('build-static', ['build-static-js', 'build-static-not-js']);
|