@geejay/use-feature-flags 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.
Files changed (2) hide show
  1. package/dist/store.d.ts +1 -1
  2. package/package.json +8 -4
package/dist/store.d.ts CHANGED
@@ -14,4 +14,4 @@ export declare const featureFlagsAtom: import("jotai").PrimitiveAtom<{
14
14
  };
15
15
  };
16
16
  export declare function setApiKey(key: string): void;
17
- export declare function getApiKey(): string | null;
17
+ export declare function getApiKey(): string;
package/package.json CHANGED
@@ -1,13 +1,17 @@
1
1
  {
2
2
  "name": "@geejay/use-feature-flags",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "React hook for feature flag management using Supabase",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
- "files": ["dist", "README.md"],
7
+ "files": [
8
+ "dist",
9
+ "README.md"
10
+ ],
8
11
  "scripts": {
9
- "build": "tsc"
10
- },
12
+ "build": "rm -rf dist && tsc -p tsconfig.build.json"
13
+ },
14
+
11
15
  "keywords": ["feature flags", "supabase", "react", "hooks"],
12
16
  "repository": {
13
17
  "type": "git",