From 885438f4f701ce926db68c7cdb4eac2c5ad01e00 Mon Sep 17 00:00:00 2001 From: Andrew Koroluk Date: Thu, 28 Jan 2016 15:05:39 -0500 Subject: [PATCH] fix(grunt:babel): don't try to transpile JSON files closes #1561 --- app/templates/Gruntfile(grunt).js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/Gruntfile(grunt).js b/app/templates/Gruntfile(grunt).js index 87846d184..af7ee8c7e 100644 --- a/app/templates/Gruntfile(grunt).js +++ b/app/templates/Gruntfile(grunt).js @@ -636,7 +636,7 @@ module.exports = function (grunt) { files: [{ expand: true, cwd: '<%%= yeoman.server %>', - src: ['**/*.{js,json}'], + src: ['**/*.js'], dest: '<%%= yeoman.dist %>/<%%= yeoman.server %>' }] }