mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-05 04:47:54 +00:00
15 lines
331 B
JavaScript
15 lines
331 B
JavaScript
import gulp from 'gulp';
|
|
import runSequence from 'run-sequence';
|
|
import helpers from './helpers/gulp-helpers';
|
|
|
|
const {shellExec} = helpers;
|
|
|
|
gulp.task('publish', done => {
|
|
shellExec('npm publish', false, done);
|
|
});
|
|
|
|
gulp.task('release', callback => {
|
|
return runSequence('test', 'lint', 'build', 'publish', callback);
|
|
});
|
|
|