chore: fix lint errors for shell scripts and yaml files

This commit is contained in:
tanzhenxin
2025-08-22 11:35:35 +08:00
parent 0ba0d27941
commit 0f3db5275f
11 changed files with 195 additions and 213 deletions

View File

@@ -1,21 +0,0 @@
#!/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