Skip to content

Commit 8f7692a

Browse files
feat: run npm dedupe at end of finalizeDependencies (#902)
## PR Checklist - [x] Addresses an existing open issue: fixes #770 - [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 Adds with `execaCommand` since it's already being used.
1 parent 1399071 commit 8f7692a

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/steps/finalizeDependencies.test.ts

+9
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ describe("finalize", () => {
6565
[
6666
"npx all-contributors-cli generate",
6767
],
68+
[
69+
"pnpm dedupe",
70+
],
6871
]
6972
`);
7073
});
@@ -83,6 +86,9 @@ describe("finalize", () => {
8386
[
8487
"npx all-contributors-cli generate",
8588
],
89+
[
90+
"pnpm dedupe",
91+
],
8692
]
8793
`);
8894
});
@@ -110,6 +116,9 @@ describe("finalize", () => {
110116
[
111117
"pnpm add @types/eslint@latest @typescript-eslint/eslint-plugin@latest @typescript-eslint/parser@latest eslint@latest eslint-plugin-deprecation@latest eslint-plugin-eslint-comments@latest eslint-plugin-jsdoc@latest eslint-plugin-n@latest eslint-plugin-regexp@latest husky@latest lint-staged@latest prettier@latest prettier-plugin-curly@latest prettier-plugin-packagejson@latest tsup@latest typescript@latest -D",
112118
],
119+
[
120+
"pnpm dedupe",
121+
],
113122
]
114123
`);
115124
});

src/steps/finalizeDependencies.ts

+2
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,6 @@ export async function finalizeDependencies(options: Options) {
7878
"-D",
7979
);
8080
}
81+
82+
await execaCommand(`pnpm dedupe`);
8183
}

0 commit comments

Comments
 (0)