Skip to content

Commit

Permalink
Remove unused zip task (#1339)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewlane authored and jaiminpanchal27 committed Jun 30, 2017
1 parent a9c1d06 commit d0b73f4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
8 changes: 0 additions & 8 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ var gulpJsdoc2md = require('gulp-jsdoc-to-markdown');
var concat = require('gulp-concat');
var header = require('gulp-header');
var footer = require('gulp-footer');
var zip = require('gulp-zip');
var replace = require('gulp-replace');
var shell = require('gulp-shell');
var optimizejs = require('gulp-optimize-js');
Expand Down Expand Up @@ -131,13 +130,6 @@ gulp.task('webpack', ['clean'], function () {
.pipe(connect.reload());
});

//zip up for release
gulp.task('zip', ['webpack'], function () {
return gulp.src(['build/dist/*', 'integrationExamples/gpt/*'])
.pipe(zip(packageNameVersion + '.zip'))
.pipe(gulp.dest('./'));
});

// Karma Continuous Testing
// Pass your browsers by using --browsers=chrome,firefox,ie9
// Run CI by passing --watch
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
"gulp-uglify": "^0.3.1",
"gulp-util": "^3.0.0",
"gulp-webdriver": "^1.0.1",
"gulp-zip": "^3.1.0",
"istanbul": "^0.3.2",
"istanbul-instrumenter-loader": "^0.1.2",
"json-loader": "^0.5.1",
Expand Down

0 comments on commit d0b73f4

Please sign in to comment.