mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 12:57:52 +00:00
8f78dd03af
- Add `npm run lint:fix` command - Cleanup inferIcon.js logic slightly
19 lines
442 B
JavaScript
19 lines
442 B
JavaScript
import gulp from 'gulp';
|
|
import del from 'del';
|
|
import runSequence from 'run-sequence';
|
|
import PATHS from './helpers/src-paths';
|
|
|
|
gulp.task('build', (callback) => {
|
|
runSequence('clean', ['build-cli', 'build-app', 'build-tests'], callback);
|
|
});
|
|
|
|
gulp.task('clean', (callback) => {
|
|
del(PATHS.CLI_DEST).then(() => {
|
|
del(PATHS.APP_DEST).then(() => {
|
|
del(PATHS.TEST_DEST).then(() => {
|
|
callback();
|
|
});
|
|
});
|
|
});
|
|
});
|