@rushstack/rush-pnpm-kit-v8 0.2.1 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.json +29 -0
- package/CHANGELOG.md +13 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +4 -2
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-pnpm-kit-v8",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.2.3",
|
|
6
|
+
"tag": "@rushstack/rush-pnpm-kit-v8_v0.2.3",
|
|
7
|
+
"date": "Fri, 20 Feb 2026 16:14:49 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"dependency": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `1.2.2`"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"version": "0.2.2",
|
|
18
|
+
"tag": "@rushstack/rush-pnpm-kit-v8_v0.2.2",
|
|
19
|
+
"date": "Fri, 20 Feb 2026 00:15:04 GMT",
|
|
20
|
+
"comments": {
|
|
21
|
+
"patch": [
|
|
22
|
+
{
|
|
23
|
+
"comment": "Add `\"node\"` condition before `\"import\"` in the `\"exports\"` map so that Node.js uses the CJS output (which handles extensionless imports), while bundlers still use ESM via `\"import\"`. Fixes https://github.com/microsoft/rushstack/issues/5644."
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"dependency": [
|
|
27
|
+
{
|
|
28
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `1.2.1`"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
4
33
|
{
|
|
5
34
|
"version": "0.2.1",
|
|
6
35
|
"tag": "@rushstack/rush-pnpm-kit-v8_v0.2.1",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Change Log - @rushstack/rush-pnpm-kit-v8
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 20 Feb 2026 16:14:49 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.2.3
|
|
6
|
+
Fri, 20 Feb 2026 16:14:49 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 0.2.2
|
|
11
|
+
Fri, 20 Feb 2026 00:15:04 GMT
|
|
12
|
+
|
|
13
|
+
### Patches
|
|
14
|
+
|
|
15
|
+
- Add `"node"` condition before `"import"` in the `"exports"` map so that Node.js uses the CJS output (which handles extensionless imports), while bundlers still use ESM via `"import"`. Fixes https://github.com/microsoft/rushstack/issues/5644.
|
|
4
16
|
|
|
5
17
|
## 0.2.1
|
|
6
18
|
Thu, 19 Feb 2026 01:30:06 GMT
|
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-pnpm-kit-v8",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "rush pnpm kit v8",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./lib-commonjs/index.js",
|
|
@@ -9,11 +9,13 @@
|
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
11
|
"types": "./dist/rush-pnpm-kit-v8.d.ts",
|
|
12
|
+
"node": "./lib-commonjs/index.js",
|
|
12
13
|
"import": "./lib-esm/index.js",
|
|
13
14
|
"require": "./lib-commonjs/index.js"
|
|
14
15
|
},
|
|
15
16
|
"./lib/*": {
|
|
16
17
|
"types": "./lib-dts/*.d.ts",
|
|
18
|
+
"node": "./lib-commonjs/*.js",
|
|
17
19
|
"import": "./lib-esm/*.js",
|
|
18
20
|
"require": "./lib-commonjs/*.js"
|
|
19
21
|
},
|
|
@@ -32,7 +34,7 @@
|
|
|
32
34
|
"@pnpm/logger": "~5.0.0"
|
|
33
35
|
},
|
|
34
36
|
"devDependencies": {
|
|
35
|
-
"@rushstack/heft": "1.2.
|
|
37
|
+
"@rushstack/heft": "1.2.2",
|
|
36
38
|
"local-node-rig": "1.0.0"
|
|
37
39
|
},
|
|
38
40
|
"sideEffects": false,
|