Skip to content

Commit 3e0518b

Browse files
committed
fix(grunt:babel): exclude local.env.sample.js
1 parent 312384d commit 3e0518b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: app/templates/Gruntfile(grunt).js

+4-1
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,10 @@ module.exports = function (grunt) {
637637
files: [{
638638
expand: true,
639639
cwd: '<%%= yeoman.server %>',
640-
src: ['**/*.js'],
640+
src: [
641+
'**/*.js',
642+
'!config/local.env.sample.js'
643+
],
641644
dest: '<%%= yeoman.dist %>/<%%= yeoman.server %>'
642645
}]
643646
}

0 commit comments

Comments
 (0)