Workspace cleaner — wipes the build artifacts each sub-project produces (build/, dist/, dist-electron/, resources/, node_modules/.cache/, PyInstaller's .pyi-build/) so a fresh yarn install && yarn build is deterministic.
build/
dist/
dist-electron/
resources/
node_modules/.cache/
.pyi-build/
yarn install && yarn build
Invoked through scripts/dispatch.ts — see its cleanProject() for the full list of paths swept.
scripts/dispatch.ts
cleanProject()
Workspace cleaner — wipes the build artifacts each sub-project produces (
build/,dist/,dist-electron/,resources/,node_modules/.cache/, PyInstaller's.pyi-build/) so a freshyarn install && yarn buildis deterministic.Invoked through
scripts/dispatch.ts— see itscleanProject()for the full list of paths swept.