From 0ef2ce37c719dac02e229a7889be8e11db0e2c49 Mon Sep 17 00:00:00 2001 From: user378230 Date: Mon, 4 Apr 2016 20:38:40 +0100 Subject: [PATCH] build(css) fix missing dist/select.css Resolves bad changes made in #1541 which caused no select.css to be generated as part of the build. --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index 95922832d..b96a6d52f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -80,6 +80,7 @@ gulp.task('styles', ['clean'], function() { timestamp: (new Date()).toISOString(), pkg: config.pkg })) .pipe($.concat('select.css')) + .pipe(gulp.dest('dist')); .pipe($.minifyCss()) .pipe($.concat('select.min.css')) .pipe($.sourcemaps.write('../dist', {debug: true}))