We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I try to move from yarn to pnpm Everything should work fine except xo can't execute node corrrectly.
yarn
pnpm
xo
node
It can't require any file in current project:
src/index.js:1:1 ✖ 1:1 Resolve error: unable to load resolver "node". import/order ✖ 1:1 Resolve error: unable to load resolver "node". import/no-unresolved ✖ 1:1 Resolve error: unable to load resolver "node". import/no-extraneous-dependencies ✖ 2:25 Unable to resolve path to module ./cronjob. import/no-unresolved ✖ 3:25 Unable to resolve path to module ./watcher. import/no-unresolved
or in node_modules:
src/helper/thumbnail/parse-path.js:1:1 ✖ 1:1 Resolve error: unable to load resolver "node". import/order ✖ 1:1 Resolve error: unable to load resolver "node". import/no-unresolved ✖ 1:1 Resolve error: unable to load resolver "node". import/no-extraneous-dependencies ✖ 1:25 Unable to resolve path to module @write-for-christ/fs-array. import/no-unresolved ✖ 2:7 walker is assigned a value but never used. no-unused-vars ✖ 2:24 Unable to resolve path to module async-walk. import/no-unresolved
The text was updated successfully, but these errors were encountered:
pnpm does some weird things with symlinking that is not always compatible. The error is coming from https://github.com/benmosher/eslint-plugin-import, so better to open an issue over there.
Sorry, something went wrong.
No branches or pull requests
Hi,
I try to move from
yarn
topnpm
Everything should work fine except
xo
can't executenode
corrrectly.It can't require any file in current project:
or in node_modules:
The text was updated successfully, but these errors were encountered: