Skip to content

Commit 0455550

Browse files
committed
fixes
1 parent 9b4a67a commit 0455550

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

β€Ž.github/workflows/integration-workflow.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -229,13 +229,13 @@ jobs:
229229
- {node: 18, platform: [macos, latest], shard: 3/3}
230230
# We also run them on the maximum Node version we support, to catch potential regressions in Node.js.
231231
# Windows tests
232-
- {node: 22, platform: [windows, latest], shard: 1/3}
233-
- {node: 22, platform: [windows, latest], shard: 2/3}
234-
- {node: 22, platform: [windows, latest], shard: 3/3}
232+
- {node: 23, platform: [windows, latest], shard: 1/3}
233+
- {node: 23, platform: [windows, latest], shard: 2/3}
234+
- {node: 23, platform: [windows, latest], shard: 3/3}
235235
# macOS tests
236-
- {node: 22, platform: [macos, latest], shard: 1/3}
237-
- {node: 22, platform: [macos, latest], shard: 2/3}
238-
- {node: 22, platform: [macos, latest], shard: 3/3}
236+
- {node: 23, platform: [macos, latest], shard: 1/3}
237+
- {node: 23, platform: [macos, latest], shard: 2/3}
238+
- {node: 23, platform: [macos, latest], shard: 3/3}
239239

240240
name: '${{matrix.platform[0]}}-latest w/ Node.js ${{matrix.node}}.x (${{matrix.shard}})'
241241
runs-on: ${{matrix.platform[0]}}-${{matrix.platform[1]}}

β€Ž.pnp.cjs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.pnp.loader.mjs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackages/yarnpkg-pnp/sources/esm-loader/built-loader.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackages/yarnpkg-pnp/sources/esm-loader/loaderFlags.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ export const SUPPORTS_IMPORT_ATTRIBUTES = major >= 21 || (major === 20 && minor
2222
export const SUPPORTS_IMPORT_ATTRIBUTES_ONLY = major >= 22;
2323

2424
// https://github.com/nodejs/node/pull/53725
25-
export const SUPPORTS_TYPE_STRIPPING = major > 23 || (major === 23 && minor > 6);
25+
// https://nodejs.org/docs/v22.14.0/api/process.html#processfeaturestypescript
26+
export const SUPPORTS_TYPE_STRIPPING = Boolean((process.features as any).typescript)

β€Žpackages/yarnpkg-pnp/sources/hook.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)