From 9b6a70930126f89d2fcf2ddcfdbccf6a57472433 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Fri, 28 Aug 2015 16:11:29 -0700 Subject: [PATCH] fix pack-client should out to correct dir --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 146fd5d0ee..b5eee5417a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -183,7 +183,7 @@ gulp.task('pack-client', function() { .pipe(gulp.dest(webpackConfig.output.path)) .pipe(rev()) // copy files to public - .pipe(gulp.dest(paths.css)) + .pipe(gulp.dest(webpackConfig.output.path)) // create and merge manifest .pipe(rev.manifest('react-manifest.json')) .pipe(gulp.dest(paths.manifest));