From 164d241cd61f3197321a88e443224ee1512226fb Mon Sep 17 00:00:00 2001 From: Daniel Nauck Date: Tue, 3 Feb 2015 23:03:38 +0100 Subject: [PATCH] remove leading 'src/' path from template name --- Gruntfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index b7b54bd..f3c4a2d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -31,7 +31,8 @@ module.exports = function(grunt) { } }, template: { - src: ['src/*.html'], + cwd: 'src/', + src: ['*.html'], dest: 'tmp/templates.js' }, },