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
ensurePackage runs getPackageManagerCommand().addDev command in a temp cwd. If the target workspace is pnpm workspace, the command will be pnpm add -Dw. In a temp workspace this throws an error, because the temp workspace is not a pnpm workspace.
Run pnpm exec nx g qwik-nx:app myapp --e2eTestRunner=playwright --style=css --verbose. Playwright is not added as a dependency, so qwik-nx will attempt to install it
Current Behavior
nx/packages/devkit/src/utils/package-json.ts
Lines 451 to 454 in c53d9c3
ensurePackage
runsgetPackageManagerCommand().addDev
command in a temp cwd. If the target workspace is pnpm workspace, the command will bepnpm add -Dw
. In a temp workspace this throws an error, because the temp workspace is not a pnpm workspace.Expected Behavior
It should not use
-Dw
flag for the installation.GitHub Repo
https://github.com/qwikifiers/qwik-ui
Steps to Reproduce
pnpm install
pnpm exec nx g qwik-nx:app myapp --e2eTestRunner=playwright --style=css --verbose
. Playwright is not added as a dependency, soqwik-nx
will attempt to install itNx Report
Failure Logs
Additional Information
No response
The text was updated successfully, but these errors were encountered: