mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2025-02-08 22:18:25 +00:00
Run npm prune before running tests, use shelljs instead of child process
This commit is contained in:
parent
8f06c555e5
commit
15a7304e1b
@ -5,9 +5,9 @@ import webpack from 'webpack-stream';
|
|||||||
import babel from 'gulp-babel';
|
import babel from 'gulp-babel';
|
||||||
import runSequence from 'run-sequence';
|
import runSequence from 'run-sequence';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import childProcess from 'child_process';
|
|
||||||
import eslint from 'gulp-eslint';
|
import eslint from 'gulp-eslint';
|
||||||
import mocha from 'gulp-mocha';
|
import mocha from 'gulp-mocha';
|
||||||
|
import shellJs from 'shelljs';
|
||||||
|
|
||||||
const PATHS = setUpPaths();
|
const PATHS = setUpPaths();
|
||||||
|
|
||||||
@ -73,8 +73,7 @@ gulp.task('watch', ['build'], () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('publish', done => {
|
gulp.task('publish', done => {
|
||||||
childProcess.spawn('npm', ['publish'], {stdio: 'inherit'})
|
shellExec('npm publish', done);
|
||||||
.on('close', done);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('release', callback => {
|
gulp.task('release', callback => {
|
||||||
@ -97,7 +96,15 @@ gulp.task('build-tests', done => {
|
|||||||
.pipe(gulp.dest(PATHS.TEST_DEST));
|
.pipe(gulp.dest(PATHS.TEST_DEST));
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('test', ['build'], () => {
|
gulp.task('prune', done => {
|
||||||
|
shellExec('npm prune', done);
|
||||||
|
});
|
||||||
|
|
||||||
|
gulp.task('test', callback => {
|
||||||
|
return runSequence('prune', 'mocha', callback);
|
||||||
|
});
|
||||||
|
|
||||||
|
gulp.task('mocha', ['build'], () => {
|
||||||
return gulp.src(PATHS.TEST_DEST_JS, {read: false})
|
return gulp.src(PATHS.TEST_DEST_JS, {read: false})
|
||||||
.pipe(mocha());
|
.pipe(mocha());
|
||||||
});
|
});
|
||||||
@ -128,3 +135,14 @@ function setUpPaths() {
|
|||||||
|
|
||||||
return paths;
|
return paths;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function shellExec(cmd, callback) {
|
||||||
|
shellJs.exec(cmd, {silent: true}, (code, stdout, stderr) => {
|
||||||
|
if (code) {
|
||||||
|
callback(JSON.stringify({code, stdout, stderr}));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
callback();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -71,6 +71,7 @@
|
|||||||
"gulp-sourcemaps": "^1.6.0",
|
"gulp-sourcemaps": "^1.6.0",
|
||||||
"lodash": "^4.0.0",
|
"lodash": "^4.0.0",
|
||||||
"run-sequence": "^1.1.5",
|
"run-sequence": "^1.1.5",
|
||||||
|
"shelljs": "^0.5.3",
|
||||||
"tmp": "0.0.28",
|
"tmp": "0.0.28",
|
||||||
"webpack-stream": "^3.1.0"
|
"webpack-stream": "^3.1.0"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user