We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pnpm
Learn more about funding links in repositories.
Report abuse
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
For the examples below, del-cli is a dependency in the root package.json file. msw is only a dependency in the example package.json file.
del-cli
package.json
msw
example
$ pnpm --filter example exec msw init ERR_PNPM_RECURSIVE_EXEC_FIRST_FAIL not found: msw
$ pnpm --filter example exec del-cli "node_modules"
If using --filter, it should be possible to execute commands with dependencies only in those filtered packages and not in the root package.json.
--filter
The msw command fails while the del-cli command succeeds. It seems like only dependencies in the root package.json works with exec.
exec
node -v
The text was updated successfully, but these errors were encountered:
fix(exec): commands of workspace project should be in PATH
d3908f7
close #4481
fix(exec): commands of workspace project should be in PATH (#4583)
275c405
870f55e
.bin
zkochan
Successfully merging a pull request may close this issue.
pnpm version: 6.32.3
Code to reproduce the issue:
For the examples below,
del-cli
is a dependency in the rootpackage.json
file.msw
is only a dependency in theexample
package.json
file.$ pnpm --filter example exec msw init ERR_PNPM_RECURSIVE_EXEC_FIRST_FAIL not found: msw
Expected behavior:
If using
--filter
, it should be possible to execute commands with dependencies only in those filtered packages and not in the rootpackage.json
.Actual behavior:
The
msw
command fails while thedel-cli
command succeeds. It seems like only dependencies in the rootpackage.json
works withexec
.Additional information:
node -v
prints: v16.13.2The text was updated successfully, but these errors were encountered: