Removed 'gulp-exit', becauseit did not quite work in a comprehensive way with our setup.
parent
4d4939f3d6
commit
d15027962e
|
@ -19,7 +19,6 @@ const concat = require('gulp-concat');
|
|||
const install = require("gulp-install");
|
||||
const rename = require('gulp-rename');
|
||||
const os = require('os');
|
||||
const exit = require('gulp-exit');
|
||||
|
||||
const DIST_DIR = './dist/';
|
||||
const APPS_DIR = './apps/';
|
||||
|
@ -377,8 +376,7 @@ function compressFiles(srcPath, basePath, outputFile, zipFolder) {
|
|||
return gulp.src(srcPath, { base: basePath })
|
||||
.pipe(rename(function(actualPath){ actualPath.dirname = path.join(zipFolder, actualPath.dirname) }))
|
||||
.pipe(zip(outputFile))
|
||||
.pipe(gulp.dest(RELEASE_DIR))
|
||||
.pipe(exit());
|
||||
.pipe(gulp.dest(RELEASE_DIR));
|
||||
}
|
||||
|
||||
function release_deb(arch, done) {
|
||||
|
@ -498,8 +496,7 @@ function release_osx64() {
|
|||
}
|
||||
}
|
||||
},
|
||||
}))
|
||||
.pipe(exit());
|
||||
}));
|
||||
}
|
||||
|
||||
// Create the dir directory, with write permissions
|
||||
|
|
|
@ -2579,12 +2579,6 @@
|
|||
"title-case": "^2.1.0"
|
||||
}
|
||||
},
|
||||
"gulp-exit": {
|
||||
"version": "0.0.2",
|
||||
"resolved": "http://npm.chc.tlocal/gulp-exit/-/gulp-exit-0.0.2.tgz",
|
||||
"integrity": "sha1-CCMTVIaDrQqwXUMNelYzMNTmE3A=",
|
||||
"dev": true
|
||||
},
|
||||
"gulp-install": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/gulp-install/-/gulp-install-1.1.0.tgz",
|
||||
|
|
|
@ -45,7 +45,6 @@
|
|||
"gulp": "~4.0.0",
|
||||
"gulp-concat": "~2.6.1",
|
||||
"gulp-debian": "~0.1.8",
|
||||
"gulp-exit": "0.0.2",
|
||||
"gulp-install": "^1.1.0",
|
||||
"gulp-rename": "~1.2.2",
|
||||
"gulp-zip": "^4.1.0",
|
||||
|
|
Loading…
Reference in New Issue