@storyblok/svelte 6.0.0 → 6.1.0

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/README.md +2 -2
  2. package/package.json +5 -6
package/README.md CHANGED
@@ -51,7 +51,7 @@ If you'd like to contribute, please refer to the [contributing guidelines](CONTR
51
51
 
52
52
  For help, discussion about best practices, or any other conversation that would benefit from being searchable:
53
53
 
54
- - [Discuss Storyblok on Github Discussions](https://github.com/storyblok/monoblok/discussions)
54
+ - [Discuss Storyblok on GitHub Discussions](https://github.com/storyblok/monoblok/discussions)
55
55
 
56
56
  For community support, chatting with other users, please visit:
57
57
 
@@ -66,7 +66,7 @@ For bugs or feature requests, please [submit an issue](https://github.com/storyb
66
66
 
67
67
  ### I can't share my company project code
68
68
 
69
- We understand that you might not be able to share your company's project code. Please provide a minimal reproducible example that demonstrates the issue by using tools like [Stackblitz](https://stackblitz.com) or a link to a Github Repo lease make sure you include a README file with the instructions to build and run the project, important not to include any access token, password or personal information of any kind.
69
+ We understand that you might not be able to share your company's project code. Please provide a minimal reproducible example that demonstrates the issue by using tools like [Stackblitz](https://stackblitz.com) or a link to a GitHub repo. Please make sure you include a README file with the instructions to build and run the project, important not to include any access token, password or personal information of any kind.
70
70
 
71
71
  ### Feedback
72
72
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@storyblok/svelte",
3
3
  "type": "module",
4
- "version": "6.0.0",
4
+ "version": "6.1.0",
5
5
  "private": false,
6
6
  "description": "SDK to integrate Storyblok into your project using Svelte.",
7
7
  "author": "Storyblok",
@@ -39,7 +39,7 @@
39
39
  "svelte": "^5.0.0"
40
40
  },
41
41
  "dependencies": {
42
- "@storyblok/js": "5.0.0"
42
+ "@storyblok/js": "5.1.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@cypress/svelte": "^3.0.0",
@@ -63,7 +63,7 @@
63
63
  "vite": "^6.3.5",
64
64
  "vite-plugin-dts": "^4.5.3",
65
65
  "vitest": "^3.1.3",
66
- "@storyblok/eslint-config": "0.4.2"
66
+ "@storyblok/eslint-config": "0.5.0"
67
67
  },
68
68
  "release": {
69
69
  "branches": [
@@ -84,9 +84,8 @@
84
84
  "preview": "vite preview",
85
85
  "package": "svelte-kit sync && svelte-package && publint",
86
86
  "test:types": "tsc --noEmit --skipLibCheck",
87
- "test": "pnpm run test:unit:ci && pnpm run test:e2e",
88
- "test:unit": "vitest",
89
- "test:unit:ci": "vitest run",
87
+ "test": "pnpm run test:unit && pnpm run test:e2e",
88
+ "test:unit": "vitest run",
90
89
  "test:unit:ui": "vitest --ui",
91
90
  "playground": "pnpm run --filter ./playground/sveltekit dev",
92
91
  "test:e2e": "START_SERVER_AND_TEST_INSECURE=1 start-server-and-test playground https://localhost:5173/ cy:run",