mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 12:40:44 +00:00
pre-release commit
This commit is contained in:
parent
c5dee4bb17
commit
a9d6965bef
485 changed files with 111444 additions and 2 deletions
21
scripts/pack.sh
Normal file
21
scripts/pack.sh
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue