From 4fbb658c40b35b3c938b857b13a2ded09904a72b Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 8 Jun 2024 04:40:48 +0900 Subject: [PATCH] feat(cli): add prepack script The commit introduces a "prepack" script to the CLI package's scripts within package.json. It will now run a build process before packaging. --- packages/cli/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index d041544..8b36c8c 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -67,7 +67,8 @@ "repository": "pswui/ui", "scripts": { "build": "shx rm -rf dist && tsc", - "lint": "eslint . --ext .ts" + "lint": "eslint . --ext .ts", + "prepack": "yarn build" }, "types": "dist/index.d.ts" }