Skip to content

Commit 01874cf

Browse files
committed
fix(grunt:build): don't copy local.env files
closes #1570
1 parent 6c4e926 commit 01874cf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/templates/Gruntfile(grunt).js

+3-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,9 @@ module.exports = function (grunt) {
424424
dest: '<%%= yeoman.dist %>',
425425
src: [
426426
'package.json',
427-
'<%%= yeoman.server %>/**/*'
427+
'<%%= yeoman.server %>/**/*',
428+
'!<%%= yeoman.server %>/config/local.env.js',
429+
'!<%%= yeoman.server %>/config/local.env.sample.js'
428430
]
429431
}]
430432
},

0 commit comments

Comments
 (0)