1.0.0 初始版

This commit is contained in:
睿 安
2025-09-17 10:54:25 +08:00
commit dc0cbe71dc
315 changed files with 528712 additions and 0 deletions

16
build.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
echo "构建 squirrel-main 项目..."
cd "e:\_Projects\squirrelVsis\wordk\squirrel-main"
# 检查 node_modules 是否存在
if [ ! -d "node_modules" ]; then
echo "安装依赖..."
npm install
fi
# 编译项目
echo "编译 TypeScript..."
npm run compile
echo "构建完成!"