Skip to content

Commit

Permalink
fix(gulp:build): exclude local.env.sample.js
Browse files Browse the repository at this point in the history
fixes #1570
  • Loading branch information
Awk34 committed Mar 10, 2016
1 parent 5a24b83 commit 429d5f3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/templates/gulpfile.babel(gulp).js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ const paths = {
bower: `${clientPath}/bower_components/`
},
server: {
scripts: [`${serverPath}/**/!(*.spec|*.integration).js`],
scripts: [
`${serverPath}/**/!(*.spec|*.integration).js`,
`!${serverPath}/config/local.env.sample.js`
],
json: [`${serverPath}/**/*.json`],
test: {
integration: [`${serverPath}/**/*.integration.js`, 'mocha.global.js'],
Expand Down

0 comments on commit 429d5f3

Please sign in to comment.