mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-11 15:51:06 +00:00
8f78dd03af
- Add `npm run lint:fix` command - Cleanup inferIcon.js logic slightly
12 lines
290 B
JavaScript
12 lines
290 B
JavaScript
import gulp from 'gulp';
|
|
import runSequence from 'run-sequence';
|
|
import helpers from './helpers/gulp-helpers';
|
|
|
|
const { shellExec } = helpers;
|
|
|
|
gulp.task('prune', (done) => {
|
|
shellExec('npm prune', true, done);
|
|
});
|
|
|
|
gulp.task('test', callback => runSequence('prune', 'mocha', callback));
|