You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
Currently installing some of the individual lower-level presets on their own (as opposed to via the web/react/airbnb/... presets) still results in some yarn missing peerDependencies warnings.
These aren't harmful per-se due to the way Neutrino adjusts modules resolution, however similar to similar to #751 and #759 it would be good to suppress them, to avoid warnings spam/user confusion.
The reason some of these aren't seen when running yarn install in the monorepo root, is that it also installs devDependencies, which isn't the case when the packages are installed as a subdependency. These warnings can be made visible by running rm -rf yarn.lock node_modules/ packages/*/node_modules/ && yarn install --prod from the monorepo root (or alternatively using yarn pack and installing the packages via yarn add file:foo.tgz).
In addition there is one new warning from optimize-css-assets-webpack-plugin, which was due to a change they made recently in the 4.0.1 point release (so wasn't something we'd forgotten originally).
Currently installing some of the individual lower-level presets on their own (as opposed to via the web/react/airbnb/... presets) still results in some yarn missing peerDependencies warnings.
These aren't harmful per-se due to the way Neutrino adjusts modules resolution, however similar to similar to #751 and #759 it would be good to suppress them, to avoid warnings spam/user confusion.
The reason some of these aren't seen when running
yarn install
in the monorepo root, is that it also installsdevDependencies
, which isn't the case when the packages are installed as a subdependency. These warnings can be made visible by runningrm -rf yarn.lock node_modules/ packages/*/node_modules/ && yarn install --prod
from the monorepo root (or alternatively usingyarn pack
and installing the packages viayarn add file:foo.tgz
).In addition there is one new warning from
optimize-css-assets-webpack-plugin
, which was due to a change they made recently in the 4.0.1 point release (so wasn't something we'd forgotten originally).The text was updated successfully, but these errors were encountered: