Having trouble using Turbo with NPM #325
-
|
So I have a simple monorepo with a I'm using NPM, and even after going through the documentation several times I am unable to get turborepo to work. I have installed turbo in the root folder of my project, and the root package.json looks like this: I have two issues:
I'm sure i'm making a simple mistake, but any help would be appreciated. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
AFAIK, You could either run using {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint"
}and run it on the project root. |
Beta Was this translation helpful? Give feedback.
AFAIK,
You could either run using
npxsuch likenpx turbo run buildor just setup a script, ex:and run it on the project root.