Skip to content

Commit 88524d3

Browse files
fix: correct initialize script path (#1170)
## PR Checklist - [x] Addresses an existing open issue: fixes #1168 - [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 Corrects the initialize path.
1 parent b28f609 commit 88524d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"scripts": {
2525
"build": "tsup",
2626
"format": "prettier \"**/*\" --ignore-unknown",
27-
"initialize": "tsx ./src/bin/index.js --mode initialize",
27+
"initialize": "tsx ./bin/index.js --mode initialize",
2828
"lint": "eslint . .*js --max-warnings 0",
2929
"lint:knip": "knip",
3030
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",

script/__snapshots__/migrate-test-e2e.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ exports[`expected file changes > package.json 1`] = `
224224
"scripts": {
225225
"build": "tsup",
226226
"format": "prettier \\"**/*\\" --ignore-unknown",
227-
- "initialize": "tsx ./src/bin/index.js --mode initialize",
227+
- "initialize": "tsx ./bin/index.js --mode initialize",
228228
"lint": "eslint . .*js --max-warnings 0",
229229
"lint:knip": "knip",
230230
"lint:md": "markdownlint \\"**/*.md\\" \\".github/**/*.md\\" --rules sentences-per-line",

0 commit comments

Comments
 (0)