2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2025-01-25 16:18:27 +00:00
nativefier/gulp/build/build-cli.js
2018-07-21 09:16:02 -04:00

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),
);