@storybook/addon-svelte-csf 2.0.2 → 2.0.5
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 +36 -0
- package/package.json +10 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
# v2.0.5 (Thu Jul 07 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Make `svelte-loader` optional [#62](https://github.com/storybookjs/addon-svelte-csf/pull/62) ([@benmccann](https://github.com/benmccann))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Ben McCann ([@benmccann](https://github.com/benmccann))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v2.0.4 (Thu May 19 2022)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- Remove React from peerDependencies [#58](https://github.com/storybookjs/addon-svelte-csf/pull/58) ([@j3rem1e](https://github.com/j3rem1e))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Jérémie ([@j3rem1e](https://github.com/j3rem1e))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
# v2.0.3 (Wed Apr 20 2022)
|
|
26
|
+
|
|
27
|
+
#### 🐛 Bug Fix
|
|
28
|
+
|
|
29
|
+
- Update peerdependencies to work with sb@next [#56](https://github.com/storybookjs/addon-svelte-csf/pull/56) ([@francoisromain](https://github.com/francoisromain))
|
|
30
|
+
|
|
31
|
+
#### Authors: 1
|
|
32
|
+
|
|
33
|
+
- François Romain ([@francoisromain](https://github.com/francoisromain))
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
1
37
|
# v2.0.2 (Sun Apr 17 2022)
|
|
2
38
|
|
|
3
39
|
#### 🐛 Bug Fix
|
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.5",
|
|
4
4
|
"description": "Allows to write stories in Svelte syntax",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook-addons",
|
|
@@ -68,27 +68,19 @@
|
|
|
68
68
|
"typescript": "^3.9.7"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
|
-
"@storybook/addons": "
|
|
72
|
-
"@storybook/api": "
|
|
73
|
-
"@storybook/client-api": "
|
|
74
|
-
"@storybook/client-logger": "
|
|
75
|
-
"@storybook/components": "
|
|
76
|
-
"@storybook/core-events": "
|
|
77
|
-
"@storybook/svelte": "
|
|
78
|
-
"@storybook/theming": "
|
|
79
|
-
"react": "^16.8.0 || ^17.0.0",
|
|
80
|
-
"react-dom": "^16.8.0 || ^17.0.0",
|
|
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
|
+
"@storybook/svelte": ">=6.4.20",
|
|
78
|
+
"@storybook/theming": ">=6.4.20",
|
|
81
79
|
"svelte": "^3.46.6",
|
|
82
80
|
"svelte-loader": "^3.1.2"
|
|
83
81
|
},
|
|
84
82
|
"peerDependenciesMeta": {
|
|
85
|
-
"svelte": {
|
|
86
|
-
"optional": true
|
|
87
|
-
},
|
|
88
|
-
"react": {
|
|
89
|
-
"optional": true
|
|
90
|
-
},
|
|
91
|
-
"react-dom": {
|
|
83
|
+
"svelte-loader": {
|
|
92
84
|
"optional": true
|
|
93
85
|
}
|
|
94
86
|
},
|