@storybook/sveltekit 7.0.6 → 7.0.8
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/dist/index.mjs +1 -0
- package/package.json +9 -10
- package/dist/preset.mjs +0 -1
package/dist/index.mjs
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/sveltekit",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.8",
|
|
4
4
|
"description": "Storybook for SvelteKit",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook",
|
|
@@ -24,15 +24,14 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
27
28
|
"node": "./dist/index.js",
|
|
28
29
|
"require": "./dist/index.js",
|
|
29
|
-
"import": "./dist/index.mjs"
|
|
30
|
-
"types": "./dist/index.d.ts"
|
|
30
|
+
"import": "./dist/index.mjs"
|
|
31
31
|
},
|
|
32
32
|
"./preset": {
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"types": "./dist/preset.d.ts"
|
|
33
|
+
"types": "./dist/preset.d.ts",
|
|
34
|
+
"require": "./dist/preset.js"
|
|
36
35
|
},
|
|
37
36
|
"./package.json": "./package.json"
|
|
38
37
|
},
|
|
@@ -51,9 +50,9 @@
|
|
|
51
50
|
"prep": "../../../scripts/prepare/bundle.ts"
|
|
52
51
|
},
|
|
53
52
|
"dependencies": {
|
|
54
|
-
"@storybook/builder-vite": "7.0.
|
|
55
|
-
"@storybook/svelte": "7.0.
|
|
56
|
-
"@storybook/svelte-vite": "7.0.
|
|
53
|
+
"@storybook/builder-vite": "7.0.8",
|
|
54
|
+
"@storybook/svelte": "7.0.8",
|
|
55
|
+
"@storybook/svelte-vite": "7.0.8"
|
|
57
56
|
},
|
|
58
57
|
"devDependencies": {
|
|
59
58
|
"@types/node": "^16.0.0",
|
|
@@ -76,5 +75,5 @@
|
|
|
76
75
|
],
|
|
77
76
|
"platform": "node"
|
|
78
77
|
},
|
|
79
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "9991b68c7d0cd1543c974f358cae9e0d02b29e7e"
|
|
80
79
|
}
|
package/dist/preset.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{viteFinal as svelteViteFinal}from"@storybook/svelte-vite/preset";import{withoutVitePlugins}from"@storybook/builder-vite";function configOverrides(){return{name:"storybook:sveltekit-overrides",apply:"build",config:()=>({build:{ssr:!1}})}}var core={builder:"@storybook/builder-vite",renderer:"@storybook/svelte"},viteFinal=async(config,options)=>{let baseConfig=await svelteViteFinal(config,options),{plugins=[]}=baseConfig;return plugins=(await withoutVitePlugins(plugins,["vite-plugin-sveltekit-compile","vite-plugin-sveltekit-guard"])).concat(configOverrides()),{...baseConfig,plugins}};export{core,viteFinal};
|