diff --git a/gulpfile.js b/gulpfile.js index b85613e0..1936b3ee 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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 diff --git a/package-lock.json b/package-lock.json index 03c939df..5093e39a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -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", diff --git a/package.json b/package.json index b05a6391..139181d8 100644 --- a/package.json +++ b/package.json @@ -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",