code-hike / codehike

Build rich content websites with Markdown and React
https://codehike.org
MIT License
4.71k stars 144 forks source link

[infra] Fix rollup warnings #33

Closed pomber closed 3 years ago

pomber commented 3 years ago

Most warnings are:

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

pomber commented 3 years ago

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 https://github.com/yarnpkg/yarn/issues/6672#issuecomment-551136196

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[bot] commented 2 years ago

:rocket: Issue was released in v0.3.0 :rocket: