exclude JS test files from Grunt build

This commit is contained in:
alecmerdler 2017-01-13 13:15:57 -08:00
parent d20b20ae2a
commit 94b9c94a14

View file

@ -25,7 +25,7 @@ module.exports = function(grunt) {
}, },
}, },
build: { 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' dest: '../static/dist/<%= pkg.name %>.js'
} }
}, },