Skip to content

Instantly share code, notes, and snippets.

@tnightingale
Created September 15, 2016 17:50
Show Gist options
  • Save tnightingale/5701ef7343c2784d40879d446aee4ee7 to your computer and use it in GitHub Desktop.
Save tnightingale/5701ef7343c2784d40879d446aee4ee7 to your computer and use it in GitHub Desktop.
gulp.task('release-js', ['build-js'], function (cb) {
pump([
gulp.src(DEST + '/main.js'),
uglify(),
gulp.dest(DEST)
], cb);
});
gulp.task('release-deps', ['deps'], function (cb) {
pump([
gulp.src(DEST + '/deps.js'),
uglify(),
gulp.dest(DEST)
], cb);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment