Replies: 1 comment
-
Nvm, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The root of my repo is one workspace (a package I publish on npm), and inside
packages/
is packages that it depends on.To install "normally", without bootstrapping
packages/
and without linking, so that it would be as if I do not have any workspaces and will get anode_modules
folder without any links, I can currently run this for example:yarn workspaces focus --production
is not doing the same thing, it fails with a build error due to a devDependency missing, butnpm install --workspaces false
is doing what I need.How do we do the same thing with Yarn?
Beta Was this translation helpful? Give feedback.
All reactions