Skip to content

Commit 429d5f3

Browse files
committed
fix(gulp:build): exclude local.env.sample.js
fixes #1570
1 parent 5a24b83 commit 429d5f3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/templates/gulpfile.babel(gulp).js

+4-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ const paths = {
4040
bower: `${clientPath}/bower_components/`
4141
},
4242
server: {
43-
scripts: [`${serverPath}/**/!(*.spec|*.integration).js`],
43+
scripts: [
44+
`${serverPath}/**/!(*.spec|*.integration).js`,
45+
`!${serverPath}/config/local.env.sample.js`
46+
],
4447
json: [`${serverPath}/**/*.json`],
4548
test: {
4649
integration: [`${serverPath}/**/*.integration.js`, 'mocha.global.js'],

0 commit comments

Comments
 (0)