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

27
package.bat Normal file
View File

@@ -0,0 +1,27 @@
@echo off
echo 正在构建和打包 Squirrel NUT Explorer...
echo.
echo [1/3] 安装依赖...
call npm install
echo.
echo [2/3] 编译项目...
call npm run build
echo.
echo [3/3] 打包扩展...
call vsce package
echo.
echo ============================================
echo 打包完成!
echo 生成的文件: squirrel-nut-explorer-1.0.1.vsix
echo ============================================
echo.
echo 使用方法:
echo 1. 在 VS Code 中打开扩展面板 (Ctrl+Shift+X)
echo 2. 点击 "..." 菜单,选择 "从 VSIX 安装..."
echo 3. 选择生成的 .vsix 文件
echo.
pause