feat(FN-2690): add Windows cmd wrappers for script entrypoints

- Add .cmd wrappers for audit-squash-merge, check-test-isolation, dev-hmr, dev-with-memory, release, and sync-fusion-skill-tools scripts
- Resolve each wrapper relative to its own script directory via %~dp0 so calls work from any working directory
- Forward all CLI arguments with %* to preserve existing script behavior under cmd.exe
This commit is contained in:
Fusion
2026-04-27 08:21:48 -07:00
committed by gsxdsm
parent ce1c355b7e
commit 66b465f2a8
6 changed files with 30 additions and 0 deletions

5
scripts/dev-hmr.cmd Normal file
View File

@@ -0,0 +1,5 @@
@echo off
setlocal
set "SCRIPT_DIR=%~dp0"
node "%SCRIPT_DIR%dev-hmr.mjs" %*
endlocal