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
Do you want to request a feature or report a bug?
feature request for better usability of workspaces
What is the current behavior? yarn run only runs bins that were specified in the package itself, not ones from workspace's root package.json.
If the current behavior is a bug, please provide the steps to reproduce.
git clone https://github.com/wixplosives/sample-monorepo
cd sample-monorepo
yarn
# next one works!
yarn run webpack --version
cd ./packages/app
# next one fails :(
yarn run webpack --version
What is the expected behavior?
It should also find binaries from root node_modules, and run them with cwd set to the current package I'm in.
Please mention your node.js, yarn and operating system version.
node 8.11.3, yarn 1.9.1, fedora 28
alexindigo, netanelgilad, KaelWD, wildtang, dtslvr and 8 more