@storybook/addon-svelte-csf 2.0.3 → 2.0.6
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 +37 -0
- package/README.md +1 -1
- package/package.json +2 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,40 @@
|
|
|
1
|
+
# v2.0.6 (Thu Jul 14 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- remove transitive dependencies from peerDependencies [#63](https://github.com/storybookjs/addon-svelte-csf/pull/63) ([@benmccann](https://github.com/benmccann))
|
|
6
|
+
- Add a link to native format example [#61](https://github.com/storybookjs/addon-svelte-csf/pull/61) ([@benmccann](https://github.com/benmccann))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- Ben McCann ([@benmccann](https://github.com/benmccann))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# v2.0.5 (Thu Jul 07 2022)
|
|
15
|
+
|
|
16
|
+
#### 🐛 Bug Fix
|
|
17
|
+
|
|
18
|
+
- Make `svelte-loader` optional [#62](https://github.com/storybookjs/addon-svelte-csf/pull/62) ([@benmccann](https://github.com/benmccann))
|
|
19
|
+
|
|
20
|
+
#### Authors: 1
|
|
21
|
+
|
|
22
|
+
- Ben McCann ([@benmccann](https://github.com/benmccann))
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
# v2.0.4 (Thu May 19 2022)
|
|
27
|
+
|
|
28
|
+
#### 🐛 Bug Fix
|
|
29
|
+
|
|
30
|
+
- Remove React from peerDependencies [#58](https://github.com/storybookjs/addon-svelte-csf/pull/58) ([@j3rem1e](https://github.com/j3rem1e))
|
|
31
|
+
|
|
32
|
+
#### Authors: 1
|
|
33
|
+
|
|
34
|
+
- Jérémie ([@j3rem1e](https://github.com/j3rem1e))
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
1
38
|
# v2.0.3 (Wed Apr 20 2022)
|
|
2
39
|
|
|
3
40
|
#### 🐛 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. 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.6",
|
|
4
4
|
"description": "Allows to write stories in Svelte syntax",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook-addons",
|
|
@@ -68,27 +68,12 @@
|
|
|
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
|
-
"react": "^16.8.0 || ^17.0.0",
|
|
80
|
-
"react-dom": "^16.8.0 || ^17.0.0",
|
|
81
72
|
"svelte": "^3.46.6",
|
|
82
73
|
"svelte-loader": "^3.1.2"
|
|
83
74
|
},
|
|
84
75
|
"peerDependenciesMeta": {
|
|
85
|
-
"svelte": {
|
|
86
|
-
"optional": true
|
|
87
|
-
},
|
|
88
|
-
"react": {
|
|
89
|
-
"optional": true
|
|
90
|
-
},
|
|
91
|
-
"react-dom": {
|
|
76
|
+
"svelte-loader": {
|
|
92
77
|
"optional": true
|
|
93
78
|
}
|
|
94
79
|
},
|