You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf: rimraf coverage directories in --mode migrate (#1248)
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖.
Please fill out all fields below and make sure each item is true and [x]
checked.
Otherwise we may not be able to review your PR. -->
## PR Checklist
- [x] Addresses an existing open issue: fixes#1221
- [x] That issue was marked as [`status: accepting
prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
- [x] Steps in
[CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md)
were taken
## Overview
Cleans `coverage*` directories as a part of `--mode migrate` so that
format and lint runs don't take forever going through them.
Also cleans the directories at the beginning of all three end-to-end
test formats. Sometimes I run them locally and it's a pain to have
forgotten to clear the coverage directories in that case.
Thanks to @NanderTGA for suggesting using `rimraf` for Windows support.
I would have used the *nix-only `rm -rf` by myself. 😄
Co-authored-by: @NanderTGA
0 commit comments