mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-15 17:27:08 +00:00
10 lines
234 B
JavaScript
10 lines
234 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) =>
|
|
buildES6(PATHS.CLI_SRC_JS, PATHS.CLI_DEST, done),
|
|
);
|