Skip to content

Commit

Permalink
Fix: Quoting quotes inside config template (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
adampash authored Aug 3, 2016
1 parent 7441674 commit 6b59874
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/packages/cli/templates/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export default (name: string, env: string): string => {
return template`
export default {
logging: {
level: ${isProdENV ? 'INFO' : 'DEBUG'},
format: ${isProdENV ? 'json' : 'text'},
level: ${isProdENV ? `'INFO'` : `'DEBUG'`},
format: ${isProdENV ? `'json'` : `'text'`},
enabled: ${(!isTestENV).toString()},
filter: {
Expand Down

0 comments on commit 6b59874

Please sign in to comment.