From 5a051491aa914c393c10700eb57fe517f7b27033 Mon Sep 17 00:00:00 2001 From: Jimmy Zelinskie Date: Wed, 21 Jan 2015 13:18:49 -0500 Subject: [PATCH] gruntfile: support directories in our js This will allow us to create directories for individual controllers, directives, etc... --- grunt/Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grunt/Gruntfile.js b/grunt/Gruntfile.js index 526252bd1..5dd381e8d 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/lib/**/*.js', '../static/js/**/*.js', '../static/dist/template-cache.js'], dest: '../static/dist/<%= pkg.name %>.js' } },