Skip to content

Commit 27b78a0

Browse files
committed
update
1 parent 4145901 commit 27b78a0

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"lint": "pnpm -r lint",
1010
"test": "pnpm vitest",
1111
"publish-preview": "pnpm --filter \"./packages/**\" -r publish --force --registry https://preview.registry.zenstack.dev/",
12-
"unpublish-preview": "pnpm --recursive --shell-mode exec -- npm unpublish -f --registry https://preview.registry.zenstack.dev/ \"\\$PNPM_PACKAGE_NAME\""
12+
"unpublish-preview": "pnpm --filter \"./packages/**\" -r --shell-mode exec -- npm unpublish -f --registry https://preview.registry.zenstack.dev/ \"\\$PNPM_PACKAGE_NAME\""
1313
},
1414
"keywords": [],
1515
"author": "",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@zenstackhq/cli",
2+
"name": "zenstack",
33
"publisher": "zenstack",
44
"displayName": "ZenStack Language Tools",
55
"description": "FullStack database toolkit with built-in access control and automatic API generation.",

pnpm-workspace.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
packages:
2-
- packages/**
2+
- packages/language
3+
- packages/sdk
4+
- packages/runtime
5+
- packages/cli
36
- samples/**

turbo.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,11 @@
55
"dependsOn": ["^build"],
66
"outputs": ["dist/**"]
77
},
8-
"check-types": {
9-
"dependsOn": ["^check-types"]
8+
"lint": {
9+
"dependsOn": ["^lint"]
1010
},
11-
"dev": {
12-
"persistent": true,
13-
"cache": false
11+
"test": {
12+
"dependsOn": ["^test"]
1413
}
1514
}
1615
}

0 commit comments

Comments
 (0)