From ae31f9737f4d8fd23b2c4f64181e71d01b771324 Mon Sep 17 00:00:00 2001 From: Keegan Lillo Date: Thu, 23 Jun 2016 23:39:06 -0700 Subject: [PATCH] #120 - Fixed `Error: Cannot find module 'message_keys'` in dev script --- gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/gulpfile.js b/gulpfile.js index 1130469..79355a5 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -109,6 +109,7 @@ gulp.task('dev-js', ['js', 'sass'], function() { .transform('deamdify') .transform(sassify, sassifyOptions) .transform(autoprefixify, autoprefixerOptions) + .ignore('message_keys') .bundle() .pipe(source('dev.js')) .pipe(gulp.dest('./tmp/'));