@replanejs/svelte 0.9.2 → 0.9.4
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/README.md +4 -2
- package/dist/version.d.ts +2 -2
- package/dist/version.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
[](https://github.com/replane-dev/replane-javascript/blob/main/LICENSE)
|
|
5
5
|
[](https://github.com/orgs/replane-dev/discussions)
|
|
6
6
|
|
|
7
|
+
> **Tip:** Get started instantly with [Replane Cloud](https://cloud.replane.dev) — no infrastructure required.
|
|
8
|
+
|
|
7
9
|
Svelte SDK for [Replane](https://github.com/replane-dev/replane) - feature flags and remote configuration with reactive stores.
|
|
8
10
|
|
|
9
11
|
## Installation
|
|
@@ -21,7 +23,7 @@ npm install @replanejs/svelte
|
|
|
21
23
|
|
|
22
24
|
const replane = new Replane();
|
|
23
25
|
await replane.connect({
|
|
24
|
-
baseUrl: 'https://
|
|
26
|
+
baseUrl: 'https://cloud.replane.dev', // or your self-hosted URL
|
|
25
27
|
sdkKey: 'your-sdk-key',
|
|
26
28
|
});
|
|
27
29
|
</script>
|
|
@@ -149,7 +151,7 @@ Can be used in several ways:
|
|
|
149
151
|
|
|
150
152
|
const replane = new Replane();
|
|
151
153
|
await replane.connect({
|
|
152
|
-
baseUrl: 'https://
|
|
154
|
+
baseUrl: 'https://cloud.replane.dev', // or your self-hosted URL
|
|
153
155
|
sdkKey: 'your-sdk-key',
|
|
154
156
|
});
|
|
155
157
|
</script>
|
package/dist/version.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const VERSION = "0.9.
|
|
2
|
-
export declare const DEFAULT_AGENT = "replane-js-svelte/0.9.
|
|
1
|
+
export declare const VERSION = "0.9.4";
|
|
2
|
+
export declare const DEFAULT_AGENT = "replane-js-svelte/0.9.4";
|
|
3
3
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@replanejs/svelte",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "Svelte SDK for Replane - feature flags and remote configuration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"svelte": "./dist/index.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"svelte": ">=4.0.0"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@replanejs/sdk": "^0.9.
|
|
42
|
+
"@replanejs/sdk": "^0.9.4"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@sveltejs/package": "^2.3.10",
|