Files
squirrelVsis/build.sh
2025-09-17 10:54:25 +08:00

16 lines
300 B
Bash

#!/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 "构建完成!"