@nosnibor89/svelte-client-sdk 0.1.26 → 0.1.27

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.
@@ -42,6 +42,7 @@ function toFlagsProxy(client, flags) {
42
42
  * @returns {Object} The LaunchDarkly instance object.
43
43
  */
44
44
  function createLD() {
45
+ console.log('instantiating client');
45
46
  let coreLdClient;
46
47
  const loading = writable(true);
47
48
  const flagsWritable = writable({});
@@ -15,6 +15,7 @@
15
15
  const { initialize, initializing: isClientInitializing } = LD;
16
16
 
17
17
  onMount(() => {
18
+ console.log('mounting provider', context)
18
19
  initialize(clientID, context, options);
19
20
  });
20
21
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nosnibor89/svelte-client-sdk",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "description": "Svelte LaunchDarkly SDK",
5
5
  "homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/sdk/svelte",
6
6
  "repository": {