Created
September 15, 2016 17:50
-
-
Save tnightingale/5701ef7343c2784d40879d446aee4ee7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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