Skip to content

Commit 6ffdb52

Browse files
fix: remove package.json packageManager field (#1529)
## PR Checklist - [x] Addresses an existing open issue: fixes #1513 - [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 Right now, trying to use `create-typescript-app` with anything but the _exact correct pnpm major.minor.patch version_ installed produces an error. That's very annoying. Pending nodejs/corepack#95, removes usage of the [experimental `package.json` `packageManager` field](https://nodejs.org/api/packages.html#packagemanager).
1 parent a64a9c7 commit 6ffdb52

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

.github/actions/prepare/action.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ name: Prepare
55
runs:
66
steps:
77
- uses: pnpm/action-setup@v2
8+
with:
9+
version: 9
810
- uses: actions/setup-node@v4
911
with:
1012
cache: pnpm

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@
100100
"typescript-eslint": "^7.7.0",
101101
"vitest": "^1.4.0"
102102
},
103-
"packageManager": "[email protected]",
104103
"engines": {
105104
"node": ">=18"
106105
},

src/steps/writing/creation/dotGitHub/actions.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ name: Prepare
1515
runs:
1616
steps:
1717
- uses: pnpm/action-setup@v2
18+
with:
19+
version: 9
1820
- uses: actions/setup-node@v4
1921
with:
2022
cache: pnpm

src/steps/writing/creation/dotGitHub/actions.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ export function createDotGitHubActions() {
99
name: "Prepare",
1010
runs: {
1111
steps: [
12-
{ uses: "pnpm/action-setup@v2" },
12+
{
13+
uses: "pnpm/action-setup@v2",
14+
with: { version: 9 },
15+
},
1316
{
1417
uses: "actions/setup-node@v4",
1518
with: { cache: "pnpm", "node-version": "20" },

src/steps/writing/creation/writePackageJson.test.ts

-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ describe("writePackageJson", () => {
9191
},
9292
"main": "./lib/index.js",
9393
"name": "test-repository",
94-
"packageManager": "[email protected]",
9594
"publishConfig": {
9695
"provenance": true,
9796
},
@@ -162,7 +161,6 @@ describe("writePackageJson", () => {
162161
},
163162
"main": "./lib/index.js",
164163
"name": "test-repository",
165-
"packageManager": "[email protected]",
166164
"publishConfig": {
167165
"provenance": true,
168166
},

src/steps/writing/creation/writePackageJson.ts

-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ export async function writePackageJson(options: Options) {
7575
},
7676
main: "./lib/index.js",
7777
name: options.repository,
78-
packageManager: "[email protected]",
7978
publishConfig: {
8079
provenance: true,
8180
},

0 commit comments

Comments
 (0)