2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-29 08:33:47 +00:00
nativefier/gulp/test.js

12 lines
290 B
JavaScript
Raw Normal View History

2016-02-27 16:45:44 +00:00
import gulp from 'gulp';
import runSequence from 'run-sequence';
import helpers from './helpers/gulp-helpers';
const { shellExec } = helpers;
2016-02-27 16:45:44 +00:00
gulp.task('prune', (done) => {
shellExec('npm prune', true, done);
2016-02-27 16:45:44 +00:00
});
gulp.task('test', callback => runSequence('prune', 'mocha', callback));