Skip to content

Commit 7ef897d

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/license-file-gatherer
2 parents 8fde217 + a43c66f commit 7ef897d

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

HISTORY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ All notable changes to this project will be documented in this file.
66

77
<!-- add unreleased items here -->
88

9+
* Fixed
10+
* Type exports for the web (via [#1252])
911
* Added
1012
* New class `Utils.LicenseUtility.LicenseEvidenceGatherer` ([#1162] via [#1249])
1113

1214
[#1162]: https://github.com/CycloneDX/cyclonedx-javascript-library/issues/1162
1315
[#1249]: https://github.com/CycloneDX/cyclonedx-javascript-library/pull/1249
16+
[#1252]: https://github.com/CycloneDX/cyclonedx-javascript-library/pull/1252
1417

1518
## 8.3.0 -- 2025-06-05
1619

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,15 @@
107107
"webpack-cli": "6.0.1",
108108
"webpack-node-externals": "3.0.0"
109109
},
110-
"browser": "./dist.web/lib.js",
111110
"types": "./dist.d/index.node.d.ts",
111+
"browser": "./dist.web/lib.js",
112112
"main": "./dist.node/index.node.js",
113113
"exports": {
114114
".": {
115-
"types": "./dist.d/index.node.d.ts",
115+
"types": {
116+
"browser": "./dist.d/index.web.d.ts",
117+
"default": "./dist.d/index.node.d.ts"
118+
},
116119
"browser": "./dist.web/lib.js",
117120
"default": "./dist.node/index.node.js"
118121
},

0 commit comments

Comments
 (0)