From d737696ab0f576edd1334c3166da53096f073834 Mon Sep 17 00:00:00 2001 From: Sean Emmer Date: Wed, 19 Aug 2015 11:41:05 -0700 Subject: [PATCH] Corrected 'prod' task in gulpfile --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 2c260cebcf..c4f18e4e2a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -191,5 +191,5 @@ gulp.task('debug', function(done) { // Run the project in production mode gulp.task('prod', function(done) { - runSequence('build', 'lint', ['nodemon', 'watch'], done); + runSequence('build', 'env:prod', 'lint', ['nodemon', 'watch'], done); });