reactor-feature-toggle 5.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/CHANGELOG.md +16 -2
- package/README.md +0 -1
- package/dist/umd/reactor-feature-toggle.min.js.gz +0 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased][]
|
|
9
9
|
|
|
10
|
+
## [6.0.1][] - 2025-12-04
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fixed exported library types
|
|
15
|
+
|
|
16
|
+
## [6.0.0][] - 2025-12-04
|
|
17
|
+
|
|
18
|
+
### Updated
|
|
19
|
+
|
|
20
|
+
- Updating peerDependencies to accept react and react-dom >= v16
|
|
21
|
+
|
|
10
22
|
## [5.0.0][] - 2020-07-20
|
|
11
23
|
|
|
12
24
|
### Updated
|
|
@@ -163,5 +175,7 @@ And pass `featureName` prop with `!` prefix to keep the same behavior on WebApp
|
|
|
163
175
|
[4.0.5]: https://github.com/willmendesneto/reactor-feature-toggle/tree/v4.0.5
|
|
164
176
|
|
|
165
177
|
|
|
166
|
-
[Unreleased]: https://github.com/willmendesneto/reactor-feature-toggle/compare/
|
|
167
|
-
[
|
|
178
|
+
[Unreleased]: https://github.com/willmendesneto/reactor-feature-toggle/compare/v6.0.1...HEAD
|
|
179
|
+
[6.0.1]: https://github.com/willmendesneto/reactor-feature-toggle/compare/v6.0.0...v6.0.1
|
|
180
|
+
[6.0.0]: https://github.com/willmendesneto/reactor-feature-toggle/compare/v5.0.0...v6.0.0
|
|
181
|
+
[5.0.0]: https://github.com/willmendesneto/reactor-feature-toggle/tree/v5.0.0
|
package/README.md
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reactor-feature-toggle",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "Your module to handle with feature toggles in ReactJS applications easier",
|
|
5
5
|
"author": "Will Mendes <willmendesneto@gmail.com> (http://github.com/willmendesneto)",
|
|
6
6
|
"keywords": [
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"main": "dist/cjs/index.js",
|
|
28
28
|
"module": "dist/esm/index.js",
|
|
29
|
-
"types": "dist/
|
|
29
|
+
"types": "dist/cjs/index.d.ts",
|
|
30
30
|
"sideEffects": false,
|
|
31
31
|
"browser": "dist/umd/reactor-feature-toggle.js",
|
|
32
32
|
"jsnext:main": "dist/esm/index.js",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"feature-toggle-service": "^6.0.0",
|
|
58
|
-
"tslib": "^2.
|
|
58
|
+
"tslib": "^2.3.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@babel/cli": "^7.5.5",
|
|
@@ -106,8 +106,8 @@
|
|
|
106
106
|
"version-changelog": "^3.1.1"
|
|
107
107
|
},
|
|
108
108
|
"peerDependencies": {
|
|
109
|
-
"react": "
|
|
110
|
-
"react-dom": "
|
|
109
|
+
"react": ">=16.8.0",
|
|
110
|
+
"react-dom": ">=16.8.0"
|
|
111
111
|
},
|
|
112
112
|
"bundlesize": [
|
|
113
113
|
{
|