Skip to content

Commit 5404871

Browse files
Fixed ESM support in @rjsf/utils (#4512)
ESM support for `@rjsf/utils` is broken due to a `node` line being added in the `exports` block - Updated `@rjsf/utils` package.json to fix ESM issue
1 parent c384fef commit 5404871

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ it according to semantic versioning. For example, if your PR adds a breaking cha
1515
should change the heading of the (upcoming) version to include a major version bump.
1616
1717
-->
18+
# 5.24.5
19+
20+
## @rjsf/utils
21+
22+
- Fixed `package.json` to remove `node` from the `exports` block to fix ESM support
23+
1824
# 5.24.4
1925

2026
## @rjsf/utils
@@ -34,6 +40,7 @@ should change the heading of the (upcoming) version to include a major version b
3440
- Rollback [4446](https://github.com/rjsf-team/react-jsonschema-form/pull/4446) due to regression
3541

3642
## Dev / docs / playground
43+
3744
- Fixed issue with selector, where validator was getting refreshed on clicking on anything in selector. [#4472](https://github.com/rjsf-team/react-jsonschema-form/pull/4472)
3845

3946
# 5.24.2

packages/utils/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"description": "Utility functions for @rjsf/core",
88
"exports": {
99
"require": "./dist/index.js",
10-
"node": "./dist/index.js",
1110
"import": "./lib/index.js",
1211
"types": "./lib/index.d.ts"
1312
},

0 commit comments

Comments
 (0)