Skip to content

[infra] Fix rollup warnings #33

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

Closed
pomber opened this issue Mar 11, 2021 · 2 comments · Fixed by #41
Closed

[infra] Fix rollup warnings #33

pomber opened this issue Mar 11, 2021 · 2 comments · Fixed by #41

Comments

@pomber
Copy link
Contributor

pomber commented Mar 11, 2021

Most warnings are:

  • (!) Unresolved dependencies
  • (!) Missing global variable names

Maybe also fix the unmet peer dependency warnings from yarn install.

@pomber
Copy link
Contributor Author

pomber commented Mar 14, 2021

Yarn v1 warnings aren't easy to hide, for the ones that don't make sense to solve this could be used:

yarn install 2> >(grep -v warning 1>&2)

-- from yarnpkg/yarn#6672 (comment)

Or even better:

yarn install 2>&1 | grep -v '^[warning|info]' 

And for the optional deps, there is this:

yarn --ignore-optional

-- from https://stackoverflow.com/a/59705056/1325646

@github-actions
Copy link
Contributor

github-actions bot commented Mar 3, 2022

🚀 Issue was released in v0.3.0 🚀

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 a pull request may close this issue.

1 participant