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.
This commit is contained in:
p-sw 2024-06-08 04:40:48 +09:00
parent 3ec06170f9
commit 4fbb658c40

View File

@ -67,7 +67,8 @@
"repository": "pswui/ui", "repository": "pswui/ui",
"scripts": { "scripts": {
"build": "shx rm -rf dist && tsc", "build": "shx rm -rf dist && tsc",
"lint": "eslint . --ext .ts" "lint": "eslint . --ext .ts",
"prepack": "yarn build"
}, },
"types": "dist/index.d.ts" "types": "dist/index.d.ts"
} }