Top "Yarn-workspaces" questions

Yarn Workspaces is a feature that allows users to install dependencies from multiple package.

why does yarn warn when adding a dependency to the root workspaces package.json

Whenever I add a dependency to the root of the workspaces project: e.g. yarn add assets-webpack-plugin -D I get …

javascript yarnpkg yarn-workspaces
How to use yarn workspaces with typescript and out folders?

I'm trying to set up a monorepo using yarn. I'm confused as to how to set up typescript with project …

node.js typescript yarnpkg yarn-workspaces
How to target a single workspace with Yarn?

I have workspaces set up like this "private": true, "workspaces": { "packages": [ "packages/*" ], "nohoist": [ "**/firebase-admin", "**/firebase-admin/**", "**/firebase-functions", "**/firebase-functions/**" ] }, In my packages …

yarnpkg yarn-workspaces
nohoist with workspaces still hoisting

Inside my Monorepo I have one packages in which I want all the dependencies inside its node_modules. But whatever …

yarnpkg monorepo yarn-workspaces