Skip to content

Commit 49e00cf

Browse files
Merge branch 'master' into master
2 parents f39cf38 + b0c1ca0 commit 49e00cf

File tree

3 files changed

+26
-24
lines changed

3 files changed

+26
-24
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.2.7](https://github.com/remarkablemark/html-react-parser/compare/v1.2.6...v1.2.7) (2021-06-19)
6+
57
## [1.2.6](https://github.com/remarkablemark/html-react-parser/compare/v1.2.5...v1.2.6) (2021-04-18)
68

79
### Bug Fixes

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ parse('<p>Hello, World!</p>'); // React.createElement('p', {}, 'Hello, World!')
7272
[NPM](https://www.npmjs.com/package/html-react-parser):
7373

7474
```sh
75-
$ npm install html-react-parser --save
75+
npm install html-react-parser --save
7676
```
7777

7878
[Yarn](https://yarnpkg.com/package/html-react-parser):
7979

8080
```sh
81-
$ yarn add html-react-parser
81+
yarn add html-react-parser
8282
```
8383

8484
[CDN](https://unpkg.com/html-react-parser/):
@@ -489,7 +489,7 @@ See [#238](https://github.com/remarkablemark/html-react-parser/issues/238) and [
489489
Run benchmark:
490490

491491
```sh
492-
$ npm run test:benchmark
492+
npm run test:benchmark
493493
```
494494

495495
Output of benchmark run on MacBook Pro 2017:
@@ -503,7 +503,7 @@ html-to-react - Complex x 8,118 ops/sec ±2.99% (82 runs sampled)
503503
Run [Size Limit](https://github.com/ai/size-limit):
504504

505505
```sh
506-
$ npx size-limit
506+
npx size-limit
507507
```
508508

509509
## Contributors

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "html-react-parser",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "HTML to React parser.",
55
"author": "Mark <mark@remarkablemark.org>",
66
"main": "index.js",
@@ -19,7 +19,7 @@
1919
"test": "jest --coverage --testPathIgnorePatterns test/integration/",
2020
"test:ci": "npm test -- --ci",
2121
"test:module": "node --experimental-modules test/module/index.mjs",
22-
"test:integration": "npm run build && jest test/integration/",
22+
"test:integration": "npm run build && jest --env=jsdom test/integration/",
2323
"test:watch": "npm test -- --watch"
2424
},
2525
"repository": {
@@ -37,37 +37,37 @@
3737
"dom"
3838
],
3939
"dependencies": {
40-
"domhandler": "4.0.0",
41-
"html-dom-parser": "1.0.0",
40+
"domhandler": "4.2.0",
41+
"html-dom-parser": "1.0.1",
4242
"react-property": "1.0.1",
4343
"style-to-js": "1.1.0"
4444
},
4545
"devDependencies": {
46-
"@commitlint/cli": "^12.1.1",
47-
"@commitlint/config-conventional": "^12.1.1",
48-
"@rollup/plugin-commonjs": "^19.0.0",
46+
"@commitlint/cli": "^13.1.0",
47+
"@commitlint/config-conventional": "^13.1.0",
48+
"@rollup/plugin-commonjs": "^20.0.0",
4949
"@rollup/plugin-node-resolve": "^13.0.0",
50-
"@size-limit/preset-big-lib": "^4.10.2",
51-
"@types/react": "^17.0.3",
52-
"@typescript-eslint/parser": "^4.22.0",
50+
"@size-limit/preset-big-lib": "^4.12.0",
51+
"@types/react": "^17.0.11",
52+
"@typescript-eslint/parser": "^4.26.1",
5353
"benchmark": "^2.1.4",
54-
"dtslint": "^4.0.9",
55-
"eslint": "^7.24.0",
54+
"dtslint": "^4.1.0",
55+
"eslint": "^7.28.0",
5656
"eslint-plugin-prettier": "^3.4.0",
57-
"husky": "^6.0.0",
58-
"jest": "^26.6.3",
57+
"husky": "^7.0.0",
58+
"jest": "^27.0.4",
5959
"lint-staged": "^11.0.0",
6060
"pinst": "^2.1.6",
6161
"preact": "^10.5.13",
62-
"prettier": "^2.2.1",
63-
"react": "^0.14 || ^15 || ^16 || ^17",
62+
"prettier": "^2.3.1",
63+
"react": "^17",
6464
"react-dom": "^17",
6565
"rimraf": "^3.0.2",
66-
"rollup": "^2.45.2",
66+
"rollup": "^2.51.2",
6767
"rollup-plugin-terser": "^7.0.2",
68-
"size-limit": "^4.10.2",
69-
"standard-version": "^9.2.0",
70-
"typescript": "^4.2.4"
68+
"size-limit": "^4.12.0",
69+
"standard-version": "^9.3.0",
70+
"typescript": "^4.3.2"
7171
},
7272
"peerDependencies": {
7373
"react": "^0.14 || ^15 || ^16 || ^17"

0 commit comments

Comments
 (0)