@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.
@@ -1,3 +1,3 @@
1
- import type { TFlagName } from '@flopflip/types';
1
+ import { type TFlagName } from '@flopflip/types';
2
2
  declare const denormalizeFlagName: (flagName: TFlagName) => string;
3
3
  export default denormalizeFlagName;
@@ -1,3 +1,3 @@
1
- import type { TAdapter } from '@flopflip/types';
1
+ import { type TAdapter } from '@flopflip/types';
2
2
  declare const exposeGlobally: (adapter: TAdapter) => void;
3
3
  export default exposeGlobally;
@@ -1,3 +1,3 @@
1
- import type { TFlag, TFlagName, TFlagVariation } from '@flopflip/types';
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 { TFlags, TFlagVariation } from '@flopflip/types';
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.22",
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.16.3",
32
- "@flopflip/types": "4.1.19",
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.4.4"
37
+ "typescript": "4.6.2"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "typescript": "4.x"