Use native shell commands for clean/clean-all #110
Loading…
Reference in a new issue
No description provided.
Delete branch "refactor/remove-clean-scripts"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I think the point of not using the native shell was to be cross-platform (specifically Windows). Do we want to abandon that idea? If so it would be a good idea to at least note that in the readme/contributing guide/...
The npm scripts that already exist do seem to already assume a Unix-like shell using chaining operators like
&&
and||
. To be fair, those did get added to PowerShell 7.0, but judging bygit blame
on the mainpackage.json
, those do predate PS 7.0 by several years. Unless NPM already does some special handling for those under Windows...I'll at least make a note in the contributing guide though.