Skip to content

Commit 69cb704

Browse files
fix: run migration rm scripts with silent: true (#1882)
## PR Checklist - [x] Addresses an existing open issue: fixes #1839 - [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 Corresponding to JoshuaKGoldberg/bingo#137. 💖
1 parent 0698506 commit 69cb704

18 files changed

+18
-0
lines changed

src/next/blocks/blockCodecov.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ describe("blockCodecov", () => {
7878
"rm .github/codecov.yml codecov.yml",
7979
],
8080
"phase": 0,
81+
"silent": true,
8182
},
8283
],
8384
}

src/next/blocks/blockCodecov.ts

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export const blockCodecov = base.createBlock({
1616
{
1717
commands: ["rm .github/codecov.yml codecov.yml"],
1818
phase: CommandPhase.Migrations,
19+
silent: true,
1920
},
2021
],
2122
};

src/next/blocks/blockContributingDocs.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ describe("blockContributingDocs", () => {
234234
"rm CONTRIBUTING.md",
235235
],
236236
"phase": 0,
237+
"silent": true,
237238
},
238239
],
239240
}

src/next/blocks/blockContributingDocs.ts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export const blockContributingDocs = base.createBlock({
1111
{
1212
commands: ["rm CONTRIBUTING.md"],
1313
phase: CommandPhase.Migrations,
14+
silent: true,
1415
},
1516
],
1617
};

src/next/blocks/blockContributorCovenant.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,7 @@ describe("blockContributorCovenant", () => {
304304
"rm CODE_OF_CONDUCT.md",
305305
],
306306
"phase": 0,
307+
"silent": true,
307308
},
308309
],
309310
}

src/next/blocks/blockContributorCovenant.ts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export const blockContributorCovenant = base.createBlock({
1111
{
1212
commands: ["rm CODE_OF_CONDUCT.md"],
1313
phase: CommandPhase.Migrations,
14+
silent: true,
1415
},
1516
],
1617
};

src/next/blocks/blockDevelopmentDocs.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ describe("blockDevelopmentDocs", () => {
5858
"rm DEVELOPMENT.md",
5959
],
6060
"phase": 0,
61+
"silent": true,
6162
},
6263
],
6364
}

src/next/blocks/blockDevelopmentDocs.ts

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ export const blockDevelopmentDocs = base.createBlock({
7070
{
7171
commands: ["rm DEVELOPMENT.md"],
7272
phase: CommandPhase.Migrations,
73+
silent: true,
7374
},
7475
],
7576
};

src/next/blocks/blockESLint.ts

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ export const blockESLint = base.createBlock({
7070
{
7171
commands: ["rm .eslintrc* .eslintignore eslint.config.*"],
7272
phase: CommandPhase.Migrations,
73+
silent: true,
7374
},
7475
],
7576
};

src/next/blocks/blockGitHubActionsCI.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ describe("blockGitHubActionsCI", () => {
184184
"rm -rf .circleci travis.yml",
185185
],
186186
"phase": 0,
187+
"silent": true,
187188
},
188189
],
189190
}

src/next/blocks/blockGitHubActionsCI.ts

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export const blockGitHubActionsCI = base.createBlock({
3535
{
3636
commands: ["rm -rf .circleci travis.yml"],
3737
phase: CommandPhase.Migrations,
38+
silent: true,
3839
},
3940
],
4041
};

src/next/blocks/blockKnip.ts

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export const blockKnip = base.createBlock({
2020
{
2121
commands: ["rm .knip* knip.*"],
2222
phase: CommandPhase.Migrations,
23+
silent: true,
2324
},
2425
],
2526
};

src/next/blocks/blockPackageJson.ts

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export const blockPackageJson = base.createBlock({
3232
{
3333
commands: ["rm package-lock.json yarn.lock"],
3434
phase: CommandPhase.Migrations,
35+
silent: true,
3536
},
3637
],
3738
};

src/next/blocks/blockPrettier.ts

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export const blockPrettier = base.createBlock({
3434
{
3535
commands: ["rm .prettierrc* prettier.config*"],
3636
phase: CommandPhase.Migrations,
37+
silent: true,
3738
},
3839
],
3940
};

src/next/blocks/blockTSup.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ describe("blockTSup", () => {
181181
"rm -rf .babelrc* babel.config.* dist lib",
182182
],
183183
"phase": 0,
184+
"silent": true,
184185
},
185186
],
186187
}

src/next/blocks/blockTSup.ts

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export const blockTSup = base.createBlock({
2222
{
2323
commands: ["rm -rf .babelrc* babel.config.* dist lib"],
2424
phase: CommandPhase.Migrations,
25+
silent: true,
2526
},
2627
],
2728
};

src/next/blocks/blockVitest.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,7 @@ describe("blockVitest", () => {
472472
"rm .mocha* jest.config.* vitest.config.*",
473473
],
474474
"phase": 0,
475+
"silent": true,
475476
},
476477
],
477478
}

src/next/blocks/blockVitest.ts

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export const blockVitest = base.createBlock({
3535
{
3636
commands: ["rm .mocha* jest.config.* vitest.config.*"],
3737
phase: CommandPhase.Migrations,
38+
silent: true,
3839
},
3940
],
4041
};

0 commit comments

Comments
 (0)