From 94b9c94a14afd8660cae54cd8afd5994a6ff1547 Mon Sep 17 00:00:00 2001 From: alecmerdler Date: Fri, 13 Jan 2017 13:15:57 -0800 Subject: [PATCH] exclude JS test files from Grunt build --- grunt/Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt/Gruntfile.js b/grunt/Gruntfile.js index 901abb1d5..9239f7e94 100644 --- a/grunt/Gruntfile.js +++ b/grunt/Gruntfile.js @@ -25,7 +25,7 @@ module.exports = function(grunt) { }, }, build: { - src: ['../static/lib/**/*.js', '../static/js/**/*.js', '../static/dist/template-cache.js'], + src: ['!../static/js/**/*.spec.js', '../static/lib/**/*.js', '../static/js/**/*.js', '../static/dist/template-cache.js'], dest: '../static/dist/<%= pkg.name %>.js' } },