If I have the following monorepo set up
- packages/app1 has
is-even
in it's package.json - packages/app2 does not have
is-even
in its package.json - packages/app2 tries to use
is-even
Then currently, I don't get any warning from something like eslint-plugin-import, when preferably, I would like an error because if I publish app2, then any user that tries to install it from NPM will receive errors because it does not properly specify that it needs is-even
as a dependency
Reproducible case here with a minimal monorepo https://github.com/cmdcolin/yarn_workspaces_eslint_plugin_import
This was fixed by adding
This makes it detect the error properly, e.g. this message is expected and good now