@storybook/addon-svelte-csf 2.0.5 → 2.0.7
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/CHANGELOG.md +25 -0
- package/README.md +1 -1
- package/package.json +1 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# v2.0.7 (Fri Aug 12 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- update description [#66](https://github.com/storybookjs/addon-svelte-csf/pull/66) ([@benmccann](https://github.com/benmccann))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Ben McCann ([@benmccann](https://github.com/benmccann))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v2.0.6 (Thu Jul 14 2022)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- remove transitive dependencies from peerDependencies [#63](https://github.com/storybookjs/addon-svelte-csf/pull/63) ([@benmccann](https://github.com/benmccann))
|
|
18
|
+
- Add a link to native format example [#61](https://github.com/storybookjs/addon-svelte-csf/pull/61) ([@benmccann](https://github.com/benmccann))
|
|
19
|
+
|
|
20
|
+
#### Authors: 1
|
|
21
|
+
|
|
22
|
+
- Ben McCann ([@benmccann](https://github.com/benmccann))
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
1
26
|
# v2.0.5 (Thu Jul 07 2022)
|
|
2
27
|
|
|
3
28
|
#### 🐛 Bug Fix
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Svelte Story Format
|
|
2
2
|
|
|
3
|
-
Allows to write your stories in
|
|
3
|
+
Allows to write your stories in Svelte syntax and compiles it to Storybook's CSF syntax. See the native format tab in the [getting started docs](https://storybook.js.org/docs/svelte/get-started/whats-a-story) for an example.
|
|
4
4
|
|
|
5
5
|
It supports:
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/addon-svelte-csf",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "Allows to write stories in Svelte syntax",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook-addons",
|
|
@@ -68,14 +68,7 @@
|
|
|
68
68
|
"typescript": "^3.9.7"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
|
-
"@storybook/addons": ">=6.4.20",
|
|
72
|
-
"@storybook/api": ">=6.4.20",
|
|
73
|
-
"@storybook/client-api": ">=6.4.20",
|
|
74
|
-
"@storybook/client-logger": ">=6.4.20",
|
|
75
|
-
"@storybook/components": ">=6.4.20",
|
|
76
|
-
"@storybook/core-events": ">=6.4.20",
|
|
77
71
|
"@storybook/svelte": ">=6.4.20",
|
|
78
|
-
"@storybook/theming": ">=6.4.20",
|
|
79
72
|
"svelte": "^3.46.6",
|
|
80
73
|
"svelte-loader": "^3.1.2"
|
|
81
74
|
},
|