We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10a3055 commit 308c094Copy full SHA for 308c094
package.json
@@ -16,7 +16,7 @@
16
"start": "turbo run start --filter !cloudo",
17
"test": "vitest",
18
"web": "pnpm run web:docs && turbo run web:dev",
19
- "web:build": "turbo run docs && turbo run web:build",
+ "web:build": "turbo run web:build",
20
"web:docs": "turbo run docs"
21
},
22
"dependencies": {
turbo.json
@@ -13,10 +13,12 @@
13
"dev": {
14
"persistent": true
15
- "web:build": {},
+ "web:build": {
+ "dependsOn": ["build", "docs"]
+ },
"web:dev": {},
"docs": {
- "dependsOn": ["^build", "^docs"],
+ "dependsOn": ["build", "^docs"],
"inputs": [
23
"src/**",
24
"typedoc.json",
0 commit comments