mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-16 18:15:08 +00:00
10 lines
246 B
JavaScript
10 lines
246 B
JavaScript
import gulp from 'gulp';
|
|
import PATHS from './../helpers/src-paths';
|
|
import helpers from './../helpers/gulp-helpers';
|
|
|
|
const {buildES6} = helpers;
|
|
|
|
gulp.task('build-cli', done => {
|
|
return buildES6(PATHS.CLI_SRC_JS, PATHS.CLI_DEST, done);
|
|
});
|