Removed 'gulp-exit', becauseit did not quite work in a comprehensive way with our setup.

10.3.x-maintenance
Michael Keller 2018-05-18 22:24:05 +12:00
parent 4d4939f3d6
commit d15027962e
3 changed files with 2 additions and 12 deletions

View File

@ -19,7 +19,6 @@ const concat = require('gulp-concat');
const install = require("gulp-install"); const install = require("gulp-install");
const rename = require('gulp-rename'); const rename = require('gulp-rename');
const os = require('os'); const os = require('os');
const exit = require('gulp-exit');
const DIST_DIR = './dist/'; const DIST_DIR = './dist/';
const APPS_DIR = './apps/'; const APPS_DIR = './apps/';
@ -377,8 +376,7 @@ function compressFiles(srcPath, basePath, outputFile, zipFolder) {
return gulp.src(srcPath, { base: basePath }) return gulp.src(srcPath, { base: basePath })
.pipe(rename(function(actualPath){ actualPath.dirname = path.join(zipFolder, actualPath.dirname) })) .pipe(rename(function(actualPath){ actualPath.dirname = path.join(zipFolder, actualPath.dirname) }))
.pipe(zip(outputFile)) .pipe(zip(outputFile))
.pipe(gulp.dest(RELEASE_DIR)) .pipe(gulp.dest(RELEASE_DIR));
.pipe(exit());
} }
function release_deb(arch, done) { function release_deb(arch, done) {
@ -498,8 +496,7 @@ function release_osx64() {
} }
} }
}, },
})) }));
.pipe(exit());
} }
// Create the dir directory, with write permissions // Create the dir directory, with write permissions

6
package-lock.json generated
View File

@ -2579,12 +2579,6 @@
"title-case": "^2.1.0" "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": { "gulp-install": {
"version": "1.1.0", "version": "1.1.0",
"resolved": "https://registry.npmjs.org/gulp-install/-/gulp-install-1.1.0.tgz", "resolved": "https://registry.npmjs.org/gulp-install/-/gulp-install-1.1.0.tgz",

View File

@ -45,7 +45,6 @@
"gulp": "~4.0.0", "gulp": "~4.0.0",
"gulp-concat": "~2.6.1", "gulp-concat": "~2.6.1",
"gulp-debian": "~0.1.8", "gulp-debian": "~0.1.8",
"gulp-exit": "0.0.2",
"gulp-install": "^1.1.0", "gulp-install": "^1.1.0",
"gulp-rename": "~1.2.2", "gulp-rename": "~1.2.2",
"gulp-zip": "^4.1.0", "gulp-zip": "^4.1.0",