From 58f74b13196bfe36d2686a9b9ef740c0252d9bc0 Mon Sep 17 00:00:00 2001 From: Doug Fritz Date: Thu, 4 Sep 2014 17:36:15 -0700 Subject: [PATCH] add missing import --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 13f57d1..05b87ac 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -33,7 +33,7 @@ gulp.task('build', ['vulcanize'], function() { .pipe($.replace(/'/g, '\\\'')) .pipe($.replace(/^(.*)$/gm, '\'$1\',')) .pipe($.insert.wrap('document.write([', '].join("\\n"))')) - .pipe(rename('gui.js')) + .pipe($.rename('gui.js')) .pipe(gulp.dest('build')); });