Skip to content

Commit

Permalink
chore(🤖):1.7.3 [skip ci]
Browse files Browse the repository at this point in the history
## [1.7.3](v1.7.2...v1.7.3) (2020-11-03)

### Bug Fixes

* remove rest @semantic-relase/npm module ([1eb4c9f](1eb4c9f))
  • Loading branch information
lizheming committed Nov 3, 2020
1 parent 13ca155 commit 8a3a436
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 6 additions & 2 deletions dist/React.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* by 司徒正美 Copyright 2020-10-14
* by 司徒正美 Copyright 2020-11-03
* IE9+
*/

Expand Down Expand Up @@ -2239,6 +2239,10 @@
if (fiber.tag > 3) {
return fiber;
}
found = downward(fiber);
if (found) {
return found;
}
if (fiber.forward) {
found = forward(fiber);
if (found) {
Expand Down Expand Up @@ -3331,7 +3335,7 @@
findDOMNode: findDOMNode,
unmountComponentAtNode: unmountComponentAtNode,
unstable_renderSubtreeIntoContainer: unstable_renderSubtreeIntoContainer,
version: '1.6.5',
version: '1.7.2',
render: render$1,
hydrate: render$1,
unstable_batchedUpdates: DOMRenderer.batchedUpdates,
Expand Down
8 changes: 6 additions & 2 deletions dist/ReactIE.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* IE6+,有问题请加QQ 370262116 by 司徒正美 Copyright 2020-10-14
* IE6+,有问题请加QQ 370262116 by 司徒正美 Copyright 2020-11-03
*/

(function (global, factory) {
Expand Down Expand Up @@ -2164,6 +2164,10 @@
if (fiber.tag > 3) {
return fiber;
}
found = downward(fiber);
if (found) {
return found;
}
if (fiber.forward) {
found = forward(fiber);
if (found) {
Expand Down Expand Up @@ -3456,7 +3460,7 @@
unmountComponentAtNode: unmountComponentAtNode,
unstable_renderSubtreeIntoContainer: unstable_renderSubtreeIntoContainer,
miniCreateClass: miniCreateClass,
version: '1.6.5',
version: '1.7.2',
render: render$1,
hydrate: render$1,
unstable_batchedUpdates: DOMRenderer.batchedUpdates,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "anujs",
"version": "1.7.2",
"version": "1.7.3",
"description": "a React16-compact mini framework",
"main": "dist/React.js",
"scripts": {
Expand Down

0 comments on commit 8a3a436

Please sign in to comment.