Skip to content

Commit 95443bc

Browse files
feat: clear more Mocha and Jest remnants (#1607)
## PR Checklist - [x] Addresses an existing open issue: fixes #1372; fixes #1373; fixes #1374 - [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 up existing files and file properties related to them. 💖
1 parent c5b5031 commit 95443bc

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/steps/clearUnnecessaryFiles.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import * as fs from "node:fs/promises";
33
const globPaths = [
44
...extensions(".babelrc", "cjs", "cts", "js", "json", "mjs"),
55
...extensions(".eslintrc", "js", "json", "yml"),
6+
...extensions(".mocha", "cjs", "js", "json", "jsonc", "yaml", "yml"),
67
...extensions(".prettierrc", "json", "json5", "yaml", "yml"),
78
...extensions("prettier.config", "js", "mjs", "cjs"),
89
...extensions("babel.config", "cjs", "cts", "js", "json", "mjs"),

src/steps/writing/creation/writePackageJson.ts

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ export async function writePackageJson(options: Options) {
5555
// Remove fields we know we don't want, such as old or redundant configs
5656
eslintConfig: undefined,
5757
husky: undefined,
58+
jest: undefined,
59+
mocha: undefined,
5860
prettierConfig: undefined,
5961
types: undefined,
6062

0 commit comments

Comments
 (0)