From c55e768dbcb93f3946e422611f8ee597389c61d2 Mon Sep 17 00:00:00 2001 From: Colin Marshall Date: Sat, 26 Mar 2016 19:05:00 -0600 Subject: [PATCH] Added transpiled js tests file to gitignore --- .gitignore | 1 + gulp/javascript.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6a26f2455..3d341f5c1 100644 --- a/.gitignore +++ b/.gitignore @@ -47,6 +47,7 @@ test/tmp test/version_tmp tmp testing/_build +test/javascript/js-tests.js pizza/ data.json diff --git a/gulp/javascript.js b/gulp/javascript.js index fbbd9403c..51e089155 100644 --- a/gulp/javascript.js +++ b/gulp/javascript.js @@ -1,5 +1,4 @@ var gulp = require('gulp'); -var chalk = require('chalk'); var concat = require('gulp-concat'); var babel = require('gulp-babel'); var onBabelError = require('./babel-error.js'); @@ -31,6 +30,7 @@ gulp.task('javascript:foundation', function() { return gulp.src(FOUNDATION) .pipe(babel() .on('error', onBabelError)) + .pipe(gulp.dest('_build/assets/js/plugins')) .pipe(concat('foundation.js')) .pipe(gulp.dest('_build/assets/js')); }); -- 2.47.2