Nativefier/gulp/build/build-cli.js

10 lines
234 B
JavaScript
Raw Normal View History

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