From 6ac9ed298d74526d165379183ea52f495f205d1b Mon Sep 17 00:00:00 2001 From: Peter Cottle Date: Sun, 22 Mar 2015 15:08:13 -0700 Subject: [PATCH] restore build functionality with browserify ignore --- Gruntfile.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index 5892ddeb..bac448c8 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -201,6 +201,11 @@ module.exports = function(grunt) { requirejs: false }, browserify: { + options: { + ignore: [ + 'src/js/__tests__/create.js' + ], + }, dist: { files: { 'build/bundle.js': ['src/**/*.js', 'src/js/**/*.js'],