From fa72cfb3a33e707e4f44270ee14f299a47d90671 Mon Sep 17 00:00:00 2001 From: Keegan Date: Mon, 29 Feb 2016 15:46:15 +1100 Subject: [PATCH] fix autoprefixer not working in dev mode --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index a65f2a8..5cad718 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -103,6 +103,7 @@ gulp.task('dev-js', ['js', 'sass'], function() { .transform(stringify(stringifyOptions)) .transform('deamdify') .transform(sassify, sassifyOptions) + .transform(autoprefixify, autoprefixerOptions) .bundle() .pipe(source('dev.js')) .pipe(gulp.dest('./tmp/'));