From ff4c4f3effb1269354697de0b7ce569885ddb5bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=A9=98?= Date: Wed, 3 Jun 2026 00:36:04 +0000 Subject: [PATCH] chore: remove per-package scripts (test/prepublishOnly) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All dev commands handled by proman at root level. workspace:* safety handled by proman release flow. 小橘 🍊 --- packages/cli/package.json | 4 ---- packages/core/package.json | 5 ----- packages/fs/package.json | 5 ----- 3 files changed, 14 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 178209b..1fa6ea3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -5,10 +5,6 @@ "bin": { "ocas": "src/index.ts" }, - "scripts": { - "test": "bun test", - "prepublishOnly": "bash ../../scripts/check-workspace-deps.sh" - }, "dependencies": { "@ocas/core": "workspace:*", "@ocas/fs": "workspace:*" diff --git a/packages/core/package.json b/packages/core/package.json index 95853c6..231f2a7 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -14,11 +14,6 @@ "dist", "src" ], - "scripts": { - "build": "tsc --build", - "test": "bun test", - "prepublishOnly": "bash ../../scripts/check-workspace-deps.sh" - }, "dependencies": { "ajv": "^8.20.0", "cborg": "^4.2.3", diff --git a/packages/fs/package.json b/packages/fs/package.json index 5ac73dd..7c6ded5 100644 --- a/packages/fs/package.json +++ b/packages/fs/package.json @@ -14,11 +14,6 @@ "dist", "src" ], - "scripts": { - "build": "tsc --build", - "test": "bun test", - "prepublishOnly": "bash ../../scripts/check-workspace-deps.sh" - }, "dependencies": { "cborg": "^4.2.3", "@ocas/core": "workspace:*"