chore: update npm publish commands in package.json

Added `up:beta` script to publish with the beta tag and updated `up` script to use `yarn npm publish` instead of `yarn publish` for consistency with npm commands.
This commit is contained in:
Shinwoo PARK 2025-03-18 21:27:23 +09:00
parent 348abc79f6
commit fb2c3bc92f

View File

@ -22,7 +22,8 @@
"scripts": {
"docs": "cp ./README.md ./dist/README.md",
"build": "rimraf ./dist/lib && tsc --project tsconfig.build.json",
"up": "yarn docs && yarn build && yarn publish dist",
"up": "yarn docs && yarn build && yarn npm publish dist",
"up:beta": "yarn docs && yarn build && yarn npm publish dist --tag beta",
"test": "ts-node ./src/test/index.ts"
},
"packageManager": "yarn@4.7.0+sha512.5a0afa1d4c1d844b3447ee3319633797bcd6385d9a44be07993ae52ff4facabccafb4af5dcd1c2f9a94ac113e5e9ff56f6130431905884414229e284e37bb7c9"