Commit 9810700
committed
fix(ci): replace rm -rf with cross-platform del-cli command
The rm -rf command fails on Windows PowerShell, causing test-setup-script
to fail and preventing dist/cli.js from being built. This resulted in
'Cannot find module dist/cli.js' errors across all Windows test runs.
Changed from:
rm -rf packages/cli/node_modules/.vite packages/cli/dist
To:
pnpm exec del-cli packages/cli/node_modules/.vite packages/cli/dist
This uses the del-cli package which works consistently across all platforms
(Windows, macOS, Linux).1 parent e344956 commit 9810700
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| |||
0 commit comments