pre-release commit

This commit is contained in:
koalazf.99 2025-07-22 19:59:07 +08:00
parent c5dee4bb17
commit a9d6965bef
485 changed files with 111444 additions and 2 deletions

21
scripts/pack.sh Normal file
View file

@ -0,0 +1,21 @@
#!/bin/bash
# Build the packages first
npm run build:packages
# Pack CLI package
cd packages/cli && npm pack && cd ../../
# Pack Core package
cd packages/core && npm pack && cd ../../
# Move the tgz files to root directory using absolute paths
cp packages/cli/*.tgz ./
cp packages/core/*.tgz ./
# Remove the original files from package directories
rm packages/cli/*.tgz
rm packages/core/*.tgz
echo "Packages created successfully:"
ls -la *.tgz