html-react-parser 6.0.0 → 6.0.1
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/README.md +6 -0
- package/dist/html-react-parser.js +1591 -1225
- package/dist/html-react-parser.js.map +1 -1
- package/dist/html-react-parser.min.js +1 -1
- package/dist/html-react-parser.min.js.map +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -445,6 +445,12 @@ parse('<p> </p>', { trim: true }); // React.createElement('p')
|
|
|
445
445
|
|
|
446
446
|
## Migration
|
|
447
447
|
|
|
448
|
+
### v6
|
|
449
|
+
|
|
450
|
+
Changed build target from `es5` to `es2016`.
|
|
451
|
+
|
|
452
|
+
[html-dom-parser](https://github.com/remarkablemark/html-dom-parser) has been upgraded to [v7](https://github.com/remarkablemark/html-dom-parser/releases/tag/v7.0.0) and [domhandler](https://github.com/fb55/domhandler) has been upgraded to [v6](https://github.com/fb55/domhandler/releases/tag/v6.0.1).
|
|
453
|
+
|
|
448
454
|
### v5
|
|
449
455
|
|
|
450
456
|
Migrated to TypeScript. CommonJS imports require the `.default` key:
|