Skip to content

Commit

Permalink
🐛 Fix invalid automatic value of config.debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Steel Brain committed Jan 23, 2017
1 parent dd11c24 commit b23f756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pundle/src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export async function getPundleConfig(rootDirectory: string, a: Object): Promise
} else if (typeof b.debug !== 'undefined') {
compilation.debug = !!b.debug
} else {
compilation.debug = !process.env.NODE_ENV !== 'production'
compilation.debug = process.env.NODE_ENV !== 'production'
}
compilation.entry = []
if (!a.entry && !b.entry) {
Expand Down

0 comments on commit b23f756

Please sign in to comment.