Replies: 1 comment
-
|
Hi, can you say more about this use case? You've described "what" (the behavior that you want) but I'm not able to understand the "why". There are ways to get similar-sounding behavior in Turborepo today that I'll bring up:
With the information in the original post, I don't know if these will strike you as workarounds are great solutions. It would be great to have more information. |
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.
-
Goals
disable: trueflag to specific task, like so{ "extends": ["//"], "tasks": { "dev": { "disable": true } } }disabledflag, it will not run when callingpnpm turbo devfrom workspace rootNon-goals
No response
Background
I have a
apps/webandpackages/some-packagein monorepo.apps/webhas adevtask that will run development server.packages/some-packagehas adevtask that runs build process with--watchflag. It is convinient for development purposes so you see the output right away. To run this task I use--filter.The idea is that when I run
pnpm turbo devfrom workspace root, thedevtask insidepackages/some-packageshould not run.Notes
packages/some-packagepnpm turbo devfrom workspace rootProposal
disableoption that can be available in Package Configurations{ "extends": ["//"], "tasks": { "dev": { "disable": true } } }Beta Was this translation helpful? Give feedback.
All reactions