@coze-arch/cli 0.0.11-alpha.47b93c → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,7 +14,7 @@ if [ -f "$PID_FILE" ]; then
14
14
  fi
15
15
 
16
16
  # 用 setsid 创建新的进程组,方便下次整组杀掉
17
- setsid pnpm pack &
17
+ setsid pnpm build:pack &
18
18
  echo $! > "$PID_FILE"
19
19
 
20
20
  echo "构建已启动 (PID: $(cat $PID_FILE))"
@@ -5,6 +5,7 @@
5
5
  "description": "Coze Mini Program Application",
6
6
  "scripts": {
7
7
  "build": "pnpm exec concurrently --kill-others-on-fail --kill-signal SIGKILL -n lint,tsc,web,weapp,tt,server -c red,blue,green,yellow,cyan,magenta \"pnpm lint:build\" \"pnpm tsc\" \"pnpm build:web\" \"pnpm build:weapp\" \"pnpm build:tt\" \"pnpm build:server\"",
8
+ "build:pack": "pnpm exec concurrently --kill-others-on-fail --kill-signal SIGKILL -n weapp,tt -c yellow,cyan \"pnpm build:weapp\" \"pnpm build:tt\"",
8
9
  "build:server": "pnpm --filter server build",
9
10
  "build:tt": "taro build --type tt",
10
11
  "build:weapp": "taro build --type weapp",
@@ -21,7 +22,6 @@
21
22
  "lint:build": "eslint \"src/**/*.{js,jsx,ts,tsx,css}\" --max-warnings=0",
22
23
  "lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx,css}\" --fix",
23
24
  "new": "taro new",
24
- "pack": "pnpm exec concurrently --kill-others-on-fail --kill-signal SIGKILL -n weapp,tt -c yellow,cyan \"pnpm build:weapp\" \"pnpm build:tt\"",
25
25
  "preview:tt": "taro build --type tt --preview",
26
26
  "preview:weapp": "taro build --type weapp --preview",
27
27
  "tsc": "npx tsc --noEmit --skipLibCheck",