@nosnibor89/svelte-client-sdk 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,7 +6,7 @@
6
6
  interface LDProviderProps {
7
7
  clientID: LDClientID;
8
8
  context: LDContext;
9
- options: LDOptions;
9
+ options?: LDOptions;
10
10
  initializing?: Snippet;
11
11
  children: Snippet;
12
12
  }
@@ -3,7 +3,7 @@ import type { LDClientID, LDContext, LDOptions } from '../client/SvelteLDClient.
3
3
  interface LDProviderProps {
4
4
  clientID: LDClientID;
5
5
  context: LDContext;
6
- options: LDOptions;
6
+ options?: LDOptions;
7
7
  initializing?: Snippet;
8
8
  children: Snippet;
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nosnibor89/svelte-client-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Svelte LaunchDarkly SDK",
5
5
  "homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/sdk/svelte",
6
6
  "repository": {
@@ -43,7 +43,7 @@
43
43
  "test:unit-coverage": "vitest --coverage"
44
44
  },
45
45
  "peerDependencies": {
46
- "svelte": "^4.0.0"
46
+ "svelte": "^5.0.0"
47
47
  },
48
48
  "dependencies": {
49
49
  "@launchdarkly/js-client-sdk": "^0.3.3",