react-pixi-fiber 1.0.1 → 1.0.2
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/CHANGELOG.md +9 -1
- package/cjs/react-pixi-fiber.development.js +1 -1
- package/cjs/react-pixi-fiber.production.min.js +2 -2
- package/cjs/react-pixi-fiber.production.min.js.map +1 -1
- package/es/react-pixi-fiber.development.js +2 -2
- package/es/react-pixi-fiber.production.min.js +2 -2
- package/es/react-pixi-fiber.production.min.js.map +1 -1
- package/package.json +1 -1
- package/src/render.js +2 -1
- package/umd/react-pixi-fiber.development.js +1 -1
- package/umd/react-pixi-fiber.production.min.js +2 -2
- package/umd/react-pixi-fiber.production.min.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
## [1.0.2] - 2022-09-01
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Fixed ES build by replacing inline require with regular import ([#283])
|
|
16
|
+
|
|
17
|
+
|
|
12
18
|
## [1.0.1] - 2022-08-02
|
|
13
19
|
|
|
14
20
|
### Fixed
|
|
@@ -412,7 +418,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
412
418
|
- Added `<TilingSprite />` component
|
|
413
419
|
|
|
414
420
|
|
|
415
|
-
[Unreleased]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.
|
|
421
|
+
[Unreleased]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.2...HEAD
|
|
422
|
+
[1.0.2]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.1...v1.0.2
|
|
416
423
|
[1.0.1]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.0...v1.0.1
|
|
417
424
|
[1.0.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.14.3...v1.0.0
|
|
418
425
|
[0.14.2]: https://github.com/michalochman/react-pixi-fiber/compare/v0.14.1...v0.14.2
|
|
@@ -461,6 +468,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
461
468
|
[0.2.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.1.1...v0.2.0
|
|
462
469
|
[0.1.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.1.0...v0.1.1
|
|
463
470
|
|
|
471
|
+
[#283]: https://github.com/michalochman/react-pixi-fiber/pull/283
|
|
464
472
|
[#277]: https://github.com/michalochman/react-pixi-fiber/pull/277
|
|
465
473
|
[#227]: https://github.com/michalochman/react-pixi-fiber/issues/227
|
|
466
474
|
[#225]: https://github.com/michalochman/react-pixi-fiber/issues/225
|
|
@@ -21479,7 +21479,7 @@ var ReactPixiFiberAsSecondaryRenderer = ReactFiberReconciler(_objectSpread2(_obj
|
|
|
21479
21479
|
var unstable_batchedUpdates = ReactPixiFiberAsPrimaryRenderer.batchedUpdates;
|
|
21480
21480
|
|
|
21481
21481
|
function getDevToolsVersion() {
|
|
21482
|
-
return
|
|
21482
|
+
return React.version;
|
|
21483
21483
|
}
|
|
21484
21484
|
var roots = new Map();
|
|
21485
21485
|
/*
|