From 3a63454beb96249339af557698f6f54d71202f46 Mon Sep 17 00:00:00 2001 From: Antoine Pairet Date: Tue, 30 Jun 2015 20:28:46 +0200 Subject: [PATCH] Fix Grunfile.js ngAnnotate task src Fix Grunfile.js ngAnnotate task src from `*/**.js` to `**/*.js` --- app/templates/Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/Gruntfile.js b/app/templates/Gruntfile.js index 96a662066..6685f5108 100644 --- a/app/templates/Gruntfile.js +++ b/app/templates/Gruntfile.js @@ -349,7 +349,7 @@ module.exports = function (grunt) { files: [{ expand: true, cwd: '.tmp/concat', - src: '*/**.js', + src: '**/*.js', dest: '.tmp/concat' }] }