Skip to content

Commit ff33f2f

Browse files
committed
15.0.0
1 parent 8e17e12 commit ff33f2f

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# [15.0.0](https://github.com/algolia/react-element-to-jsx-string/compare/v14.3.4...v15.0.0) (2022-05-09)
2+
3+
4+
### Bug Fixes
5+
6+
* add react 18 support, fixes [#728](https://github.com/algolia/react-element-to-jsx-string/issues/728) ([#729](https://github.com/algolia/react-element-to-jsx-string/issues/729)) ([8e17e12](https://github.com/algolia/react-element-to-jsx-string/commit/8e17e1283fd48108663c7fedf7d174c957c00f68))
7+
8+
9+
110
## [14.3.4](https://github.com/algolia/react-element-to-jsx-string/compare/v14.3.3...v14.3.4) (2021-10-19)
211

312

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-element-to-jsx-string",
3-
"version": "14.3.4",
3+
"version": "15.0.0",
44
"description": "Turn a ReactElement into the corresponding JSX string.",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -24,7 +24,10 @@
2424
"smoke": "node tests/smoke/run"
2525
},
2626
"lint-staged": {
27-
"*.js": ["prettier --write \"**/*.{js,json}\"", "git add"]
27+
"*.js": [
28+
"prettier --write \"**/*.{js,json}\"",
29+
"git add"
30+
]
2831
},
2932
"author": {
3033
"name": "Algolia, Inc.",
@@ -84,6 +87,8 @@
8487
"react-is": "18.1.0"
8588
},
8689
"jest": {
87-
"setupFilesAfterEnv": ["<rootDir>tests/setupTests.js"]
90+
"setupFilesAfterEnv": [
91+
"<rootDir>tests/setupTests.js"
92+
]
8893
}
8994
}

0 commit comments

Comments
 (0)