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
File ExportMap does indeed import array-includes, but array-includes is not depended on in package.json. Instead, canonical relies on a transitive dependency, as package-lock.json shows.
This is of course prone to break and, in my specific case of other ESLint version, plugins and dependencies, broke indeed.
The fix would be to include every library that eslint-plugin-canonical imports directly as a dependency in package.json
The text was updated successfully, but these errors were encountered:
When installing
[email protected]
and running ESLint I get the following error:File
ExportMap
does indeed importarray-includes
, butarray-includes
is not depended on inpackage.json
. Instead,canonical
relies on a transitive dependency, aspackage-lock.json
shows.This is of course prone to break and, in my specific case of other ESLint version, plugins and dependencies, broke indeed.
The fix would be to include every library that
eslint-plugin-canonical
imports directly as a dependency inpackage.json
The text was updated successfully, but these errors were encountered: