Skip to content
This repository was archived by the owner on Mar 1, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"build": "pnpm -r build",
"watch": "pnpm -r --parallel watch",
"lint": "pnpm -r lint",
"test": "pnpm vitest"
"test": "pnpm vitest",
Comment thread
ymc9 marked this conversation as resolved.
"publish-preview": "pnpm --filter \"./packages/**\" -r publish --force --registry https://preview.registry.zenstack.dev/",
"unpublish-preview": "pnpm --filter \"./packages/**\" -r --shell-mode exec -- npm unpublish -f --registry https://preview.registry.zenstack.dev/ \"\\$PNPM_PACKAGE_NAME\""
},
"keywords": [],
"author": "",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@zenstackhq/cli",
"name": "zenstack",
"publisher": "zenstack",
"displayName": "ZenStack Language Tools",
"description": "FullStack database toolkit with built-in access control and automatic API generation.",
Expand Down
5 changes: 4 additions & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
packages:
- packages/**
- packages/language
- packages/sdk
- packages/runtime
- packages/cli
- samples/**
9 changes: 4 additions & 5 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"check-types": {
"dependsOn": ["^check-types"]
"lint": {
"dependsOn": ["^lint"]
},
Comment thread
ymc9 marked this conversation as resolved.
"dev": {
"persistent": true,
"cache": false
"test": {
"dependsOn": ["^test"]
}
Comment thread
ymc9 marked this conversation as resolved.
}
}