Skip to content

Commit b39ae00

Browse files
fix: add dist/ to .prettierignore in blockNcc
1 parent 0ce4c0e commit b39ae00

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/blocks/blockNcc.test.ts

+8
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,14 @@ describe("blockNcc", () => {
100100
},
101101
"block": [Function],
102102
},
103+
{
104+
"addons": {
105+
"ignores": [
106+
"dist",
107+
],
108+
},
109+
"block": [Function],
110+
},
103111
],
104112
}
105113
`);

src/blocks/blockNcc.ts

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js";
44
import { blockESLint } from "./blockESLint.js";
55
import { blockGitHubActionsCI } from "./blockGitHubActionsCI.js";
66
import { blockPackageJson } from "./blockPackageJson.js";
7+
import { blockPrettier } from "./blockPrettier.js";
78

89
export const blockNcc = base.createBlock({
910
about: {
@@ -72,6 +73,9 @@ pnpm build:release
7273
},
7374
},
7475
}),
76+
blockPrettier({
77+
ignores: ["dist"],
78+
}),
7579
],
7680
};
7781
},

0 commit comments

Comments
 (0)