The root package.json clean script uses rm -rf and GNU find with -exec. Neither exists on Windows without WSL or extra tooling. Running bun run clean on Windows just fails.
"clean": "rm -rf node_modules .turbo ... && find apps packages ... -exec rm -rf {} +"
Fix would be replacing this with something cross-platform, like rimraf or a small bun script that uses fs.rmSync.
Identified with AI assistance.
The root
package.jsonclean script usesrm -rfand GNUfindwith-exec. Neither exists on Windows without WSL or extra tooling. Runningbun run cleanon Windows just fails.Fix would be replacing this with something cross-platform, like
rimrafor a small bun script that usesfs.rmSync.Identified with AI assistance.