Skip to content

Conversation

@runarfu
Copy link
Contributor

@runarfu runarfu commented Sep 25, 2018

fix #304

Copy link
Owner

@halfzebra halfzebra left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good job! 👍

It would be nice if you could address the comments, I'll release this asap.

// for invalid values, "false" and as a default, disable it
debug: process.env.ELM_DEBUGGER === 'true' ? true : false,
optimize: true,
optimize: process.env.ELM_DEBUGGER === 'true' ? false : true,
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please move this into a variable, like in build.js

yarn.lock Outdated
@@ -0,0 +1,8766 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please do not add this file to CVS

@runarfu
Copy link
Contributor Author

runarfu commented Sep 25, 2018

I've addressed the comments, thank you for good and quick feedback!

@halfzebra halfzebra merged commit eba2b35 into halfzebra:master Sep 25, 2018
@halfzebra
Copy link
Owner

Thanks for your contribution!

@runarfu runarfu deleted the issue-304-enable-debugger-with-flags-to-build-command branch September 25, 2018 13:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

ELM_DEBUGGER=true doesn't work when building apps, because it collides with --optimize

2 participants