-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix (starter): remove --no-warnings flag #435
Conversation
VAX-998 Starter: remove --no-warnings flag
The --no-warnings flag seems to be causing some issues depending on the implementation of env. Removing the --no-warnings flag solves this issue but we should double check the output to see that it does not become to verbose. See: |
Can I just sanity check that you've tested an e2e starter flow on ubuntu? |
I've googled to see if there's a way to apply the "no-warnings" setting once Node is launched. There appear to be two working solutions:
|
I have:
That should confirm that the problem is gone. Note that the node image i used uses EDIT: I'm also thinking of writing a test to check that the starter template works. At least up to the point where the project structure is initialized. But should probably be a separate PR. |
Yes, might be useful in the future if we really do need to pass some flags. |
LGTM 👍 |
Removes the
--no-warnings
flag and sidesteps the warning by not importing JSON file directly (which is experimental) but instead reading the file and parsing it as JSON.Tested with Docker, could reproduce the issue and confirm that it is fixed by this PR.
Fixes #422