@flopflip/adapter-utilities 1.0.22 → 1.0.25
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/dist/declarations/src/denormalize-flag-name/denormalize-flag-name.d.ts +1 -1
- package/dist/declarations/src/expose-globally/expose-globally.d.ts +1 -1
- package/dist/declarations/src/normalize-flag/normalize-flag.d.ts +1 -1
- package/dist/declarations/src/normalize-flags/normalize-flags.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type TFlag, type TFlagName, type TFlagVariation } from '@flopflip/types';
|
|
2
2
|
declare const normalizeFlag: (flagName: TFlagName, flagValue?: TFlagVariation | undefined) => TFlag;
|
|
3
3
|
export default normalizeFlag;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type TFlags, type TFlagVariation } from '@flopflip/types';
|
|
2
2
|
import defaultNormalizeFlag from '../normalize-flag/normalize-flag';
|
|
3
3
|
declare const normalizeFlags: (rawFlags: TFlags, normalizeFlag?: typeof defaultNormalizeFlag) => Record<string, TFlagVariation>;
|
|
4
4
|
export default normalizeFlags;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flopflip/adapter-utilities",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.25",
|
|
4
4
|
"description": "Adapter utilities for flipflop",
|
|
5
5
|
"main": "dist/flopflip-adapter-utilities.cjs.js",
|
|
6
6
|
"module": "dist/flopflip-adapter-utilities.esm.js",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"types"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@babel/runtime": "7.
|
|
32
|
-
"@flopflip/types": "4.1.
|
|
31
|
+
"@babel/runtime": "7.17.8",
|
|
32
|
+
"@flopflip/types": "4.1.21",
|
|
33
33
|
"globalthis": "1.0.2",
|
|
34
34
|
"lodash": "4.17.21"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"typescript": "4.
|
|
37
|
+
"typescript": "4.6.2"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"typescript": "4.x"
|