Skip to content

Commit d9d8324

Browse files
hartra344Travis Vu
and
Travis Vu
authored
chore: Update Turborepo to latest version (#6137)
Co-authored-by: Travis Vu <[email protected]>
1 parent 64072f8 commit d9d8324

File tree

11 files changed

+97
-114
lines changed

11 files changed

+97
-114
lines changed

apps/vs-code-designer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@
5151
"vscode:designer:pack:step1": "cd ./dist && npm install",
5252
"vscode:designer:pack:step2": "cd ./dist && vsce package",
5353
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
54-
"test:extension-unit": "vitest --retry=3"
54+
"test:extension-unit": "vitest run --retry=3"
5555
}
5656
}

libs/chatbot/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"scripts": {
5555
"build:lib": "tsup && tsc --emitDeclarationOnly",
5656
"publish:local": "pnpm unpublish --force && pnpm publish --no-git-checks --registry http://localhost:4873",
57-
"test:lib": "vitest --retry=3",
57+
"test:lib": "vitest run --retry=3",
5858
"unpublish:local": "pnpm unpublish --force"
5959
},
6060
"sideEffects": false,

libs/data-mapper-v2/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"scripts": {
8383
"build:lib": "tsup && tsc --emitDeclarationOnly",
8484
"publish:local": "pnpm unpublish --force && pnpm publish --no-git-checks --registry http://localhost:4873",
85-
"test:lib": "vitest --retry=3",
85+
"test:lib": "vitest run --retry=3",
8686
"unpublish:local": "pnpm unpublish --force"
8787
},
8888
"sideEffects": false,

libs/data-mapper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"scripts": {
7575
"build:lib": "tsup && tsc --emitDeclarationOnly",
7676
"publish:local": "pnpm unpublish --force && pnpm publish --no-git-checks --registry http://localhost:4873",
77-
"test:lib": "vitest --retry=3",
77+
"test:lib": "vitest run --retry=3",
7878
"unpublish:local": "pnpm unpublish --force"
7979
},
8080
"sideEffects": false,

libs/designer-ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"scripts": {
7777
"build:lib": "tsup && tsc --emitDeclarationOnly",
7878
"publish:local": "pnpm unpublish --force && pnpm publish --no-git-checks --registry http://localhost:4873",
79-
"test:lib": "vitest --retry=3",
79+
"test:lib": "vitest run --retry=3",
8080
"unpublish:local": "pnpm unpublish --force"
8181
},
8282
"sideEffects": false,

libs/designer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"scripts": {
8686
"build:lib": "tsup && tsc --emitDeclarationOnly",
8787
"publish:local": "pnpm unpublish --force && pnpm publish --no-git-checks --registry http://localhost:4873",
88-
"test:lib": "vitest --retry=3",
88+
"test:lib": "vitest run --retry=3",
8989
"unpublish:local": "pnpm unpublish --force"
9090
},
9191
"sideEffects": false,

libs/logic-apps-shared/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"scripts": {
5050
"build:lib": "tsup && tsc --emitDeclarationOnly -p tsconfig.json",
5151
"publish:local": "pnpm unpublish --force && pnpm publish --no-git-checks --registry http://localhost:4873",
52-
"test:lib": "vitest --retry=3",
52+
"test:lib": "vitest run --retry=3",
5353
"unpublish:local": "pnpm unpublish --force"
5454
},
5555
"sideEffects": false,

libs/vscode-extension/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"scripts": {
5656
"build:lib": "tsup && tsc --emitDeclarationOnly",
5757
"publish:local": "pnpm unpublish --force && pnpm publish --no-git-checks --registry http://localhost:4873",
58-
"test:lib": "vitest --retry=3",
58+
"test:lib": "vitest run --retry=3",
5959
"unpublish:local": "pnpm unpublish --force"
6060
},
6161
"sideEffects": false,

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"sherif": "^0.8.4",
5353
"standard-version": "^9.5.0",
5454
"tsup": "^8.0.2",
55-
"turbo": "^1.13.3",
55+
"turbo": "^2.3.0",
5656
"typescript": "^5.4.5",
5757
"typescript-eslint": "7.7.0",
5858
"vite-plugin-mkcert": "^1.17.5",

pnpm-lock.yaml

+39-37
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turbo.json

+49-68
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,51 @@
11
{
2-
"$schema": "https://turbo.build/schema.json",
3-
"experimentalUI": true,
4-
"pipeline": {
5-
"e2e": {
6-
"cache": false,
7-
"persistent": true
8-
},
9-
"build:docs": {
10-
"outputs": [
11-
"build/**"
12-
]
13-
},
14-
"build": {
15-
"dependsOn": [
16-
"^build:lib"
17-
],
18-
"outputs": [
19-
"build/**"
20-
]
21-
},
22-
"build:lib": {
23-
"outputs": [
24-
"build/**"
25-
]
26-
},
27-
"vscode-designer#build:extension": {
28-
"cache": false,
29-
"dependsOn": [
30-
"build"
31-
]
32-
},
33-
"vscode-react#build:extension": {
34-
"cache": false,
35-
"dependsOn": [
36-
"vscode-designer#build:extension"
37-
]
38-
},
39-
"dev": {
40-
"cache": false,
41-
"persistent": true
42-
},
43-
"unpublish:local": {
44-
"cache": false
45-
},
46-
"publish:local": {
47-
"cache": false,
48-
"dependsOn": [
49-
"build:lib",
50-
"^publish:local"
51-
]
52-
},
53-
"test:lib": {
54-
"outputs": [
55-
"coverage/**"
56-
]
57-
},
58-
"test:extension-unit": {
59-
"outputs": [
60-
"coverage/**"
61-
]
62-
},
63-
"vscode:designer:pack": {
64-
"cache": false,
65-
"dependsOn": [
66-
"vscode-react#build:extension"
67-
]
68-
}
2+
"$schema": "https://turbo.build/schema.json",
3+
"ui": "tui",
4+
"dangerouslyDisablePackageManagerCheck": true,
5+
6+
"tasks": {
7+
"e2e": {
8+
"cache": false,
9+
"persistent": true
10+
},
11+
"build:docs": {
12+
"outputs": ["build/**"]
13+
},
14+
"build": {
15+
"dependsOn": ["^build:lib"],
16+
"outputs": ["build/**"]
17+
},
18+
"build:lib": {
19+
"outputs": ["build/**"]
20+
},
21+
"vscode-designer#build:extension": {
22+
"cache": false,
23+
"dependsOn": ["build"]
24+
},
25+
"vscode-react#build:extension": {
26+
"cache": false,
27+
"dependsOn": ["vscode-designer#build:extension"]
28+
},
29+
"dev": {
30+
"cache": false,
31+
"persistent": true
32+
},
33+
"unpublish:local": {
34+
"cache": false
35+
},
36+
"publish:local": {
37+
"cache": false,
38+
"dependsOn": ["build:lib", "^publish:local"]
39+
},
40+
"test:lib": {
41+
"outputs": ["coverage/**"]
42+
},
43+
"test:extension-unit": {
44+
"outputs": ["coverage/**"]
45+
},
46+
"vscode:designer:pack": {
47+
"cache": false,
48+
"dependsOn": ["vscode-react#build:extension"]
6949
}
70-
}
50+
}
51+
}

0 commit comments

Comments
 (0)