reactor-feature-toggle 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/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ 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
+
10
16
  ## [6.0.0][] - 2025-12-04
11
17
 
12
18
  ### Updated
@@ -169,6 +175,7 @@ And pass `featureName` prop with `!` prefix to keep the same behavior on WebApp
169
175
  [4.0.5]: https://github.com/willmendesneto/reactor-feature-toggle/tree/v4.0.5
170
176
 
171
177
 
172
- [Unreleased]: https://github.com/willmendesneto/reactor-feature-toggle/compare/v6.0.0...HEAD
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
173
180
  [6.0.0]: https://github.com/willmendesneto/reactor-feature-toggle/compare/v5.0.0...v6.0.0
174
181
  [5.0.0]: https://github.com/willmendesneto/reactor-feature-toggle/tree/v5.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reactor-feature-toggle",
3
- "version": "6.0.0",
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/umd/index.d.ts",
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",