@acomo/cli 1.0.19 → 1.0.21

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.
Files changed (1) hide show
  1. package/package.json +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acomo/cli",
3
- "version": "1.0.19",
3
+ "version": "1.0.21",
4
4
  "description": "Official CLI for acomo workflow management platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -20,7 +20,8 @@
20
20
  "generate:params": "tsx scripts/generate-params.ts",
21
21
  "generate:schemas": "mkdir -p src/schemas && cp ../acomo-backend/src/workflow/model/schemas/model-schemas.json src/schemas/model-schemas.json && echo '✓ モデルスキーマファイルを生成しました → src/schemas/model-schemas.json'",
22
22
  "generate": "npm run generate:descriptions && npm run generate:params && npm run generate:schemas",
23
- "build": "npm run generate && node build.js",
23
+ "esbuild:install": "cd .. && npm rebuild esbuild",
24
+ "build": "npm run esbuild:install && npm run generate && node build.js",
24
25
  "dev": "tsx src/index.ts",
25
26
  "clean": "rm -rf dist",
26
27
  "prepublishOnly": "npm run clean && npm run build"