2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-09-23 01:59:03 +00:00
nativefier/gulp/build/build-cli.js

10 lines
234 B
JavaScript
Raw Normal View History

2016-02-27 16:45:44 +00:00
import gulp from 'gulp';
2018-07-21 13:16:02 +00:00
import PATHS from '../helpers/src-paths';
import helpers from '../helpers/gulp-helpers';
2016-02-27 17:07:52 +00:00
const { buildES6 } = helpers;
2016-02-27 16:45:44 +00:00
2018-05-24 07:02:44 +00:00
gulp.task('build-cli', (done) =>
buildES6(PATHS.CLI_SRC_JS, PATHS.CLI_DEST, done),
);