Skip to content

Commit 7390c17

Browse files
chore: verify changes on allowedFiles according to the template (#1048)
script/migrate-test-e2e.js <!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [x] Addresses an existing open issue: fixes #546 - [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 We track the changes using createRootFiles and we watch the changes files based on the function result. --------- Co-authored-by: Josh Goldberg ✨ <[email protected]>
1 parent 2f8e90f commit 7390c17

File tree

6 files changed

+911
-53
lines changed

6 files changed

+911
-53
lines changed

cspell.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"CHANGELOG.md",
77
"lib",
88
"node_modules",
9-
"pnpm-lock.yaml"
9+
"pnpm-lock.yaml",
10+
"./script/__snapshots__"
1011
],
1112
"words": [
1213
"allcontributors",

knip.jsonc

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"script/*e2e.js"
99
],
1010
"ignoreBinaries": ["gh"],
11+
"ignoreDependencies": ["script"],
1112
"ignoreExportsUsedInFile": {
1213
"interface": true,
1314
"type": true

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"test": "vitest",
3737
"test:create": "node script/create-test-e2e.js",
3838
"test:initialize": "node script/initialize-test-e2e.js",
39-
"test:migrate": "node script/migrate-test-e2e.js",
39+
"test:migrate": "vitest run -r script/",
4040
"tsc": "tsc"
4141
},
4242
"lint-staged": {

0 commit comments

Comments
 (0)