Skip to content

Commit afdcfee

Browse files
fix: run pnpm dedupe without --offline (#2006)
## PR Checklist - [x] Addresses an existing open issue: fixes #2005 - [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 Added a snapshot test while I was in the area. 💖
1 parent 0a886a2 commit afdcfee

File tree

2 files changed

+66
-1
lines changed

2 files changed

+66
-1
lines changed

src/blocks/blockPnpmDedupe.test.ts

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
import { testBlock } from "bingo-stratum-testers";
2+
import { describe, expect, test } from "vitest";
3+
4+
import { blockPnpmDedupe } from "./blockPnpmDedupe.js";
5+
import { optionsBase } from "./options.fakes.js";
6+
7+
describe("blockPnpmDedupe", () => {
8+
test("production", () => {
9+
const creation = testBlock(blockPnpmDedupe, {
10+
options: optionsBase,
11+
});
12+
13+
expect(creation).toMatchInlineSnapshot(`
14+
{
15+
"addons": [
16+
{
17+
"addons": {
18+
"sections": {
19+
"Linting": {
20+
"contents": {
21+
"items": [
22+
"- \`pnpm lint:packages\` ([pnpm dedupe --check](https://pnpm.io/cli/dedupe)): Checks for unnecessarily duplicated packages in the \`pnpm-lock.yml\` file",
23+
],
24+
},
25+
},
26+
},
27+
},
28+
"block": [Function],
29+
},
30+
{
31+
"addons": {
32+
"jobs": [
33+
{
34+
"name": "Lint Packages",
35+
"steps": [
36+
{
37+
"run": "pnpm lint:packages",
38+
},
39+
],
40+
},
41+
],
42+
"removedWorkflows": [
43+
"lint-packages",
44+
],
45+
},
46+
"block": [Function],
47+
},
48+
{
49+
"addons": {
50+
"cleanupCommands": [
51+
"pnpm dedupe",
52+
],
53+
"properties": {
54+
"scripts": {
55+
"lint:packages": "pnpm dedupe --check",
56+
},
57+
},
58+
},
59+
"block": [Function],
60+
},
61+
],
62+
}
63+
`);
64+
});
65+
});

src/blocks/blockPnpmDedupe.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const blockPnpmDedupe = base.createBlock({
3131
removedWorkflows: ["lint-packages"],
3232
}),
3333
blockPackageJson({
34-
cleanupCommands: ["pnpm dedupe --offline"],
34+
cleanupCommands: ["pnpm dedupe"],
3535
properties: {
3636
scripts: {
3737
"lint:packages": "pnpm dedupe --check",

0 commit comments

Comments
 (0)