storybook-framework-cedarjs 1.0.0-canary.12733 → 1.0.0-canary.12735
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/preset.js +2 -2
- package/package.json +10 -10
package/dist/preset.js
CHANGED
|
@@ -19,9 +19,9 @@ const core = {
|
|
|
19
19
|
builder: getAbsolutePath("@storybook/builder-vite"),
|
|
20
20
|
renderer: getAbsolutePath("@storybook/react")
|
|
21
21
|
};
|
|
22
|
-
const previewAnnotations = (
|
|
22
|
+
const previewAnnotations = (entries = []) => {
|
|
23
23
|
const createdRequire = createRequire(import.meta.url);
|
|
24
|
-
return [...
|
|
24
|
+
return [...entries, createdRequire.resolve("./preview.js")];
|
|
25
25
|
};
|
|
26
26
|
const redwoodProjectPaths = getPaths();
|
|
27
27
|
const viteFinal = async (config) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "storybook-framework-cedarjs",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.12735+a92c00e5e",
|
|
4
4
|
"description": "Storybook for CedarJS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Storybook",
|
|
@@ -52,19 +52,19 @@
|
|
|
52
52
|
"test:watch": "vitest watch"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@cedarjs/testing": "1.0.0-canary.
|
|
55
|
+
"@cedarjs/testing": "1.0.0-canary.12735",
|
|
56
56
|
"@joshwooding/vite-plugin-react-docgen-typescript": "0.6.2",
|
|
57
57
|
"@rollup/pluginutils": "5.1.4",
|
|
58
|
-
"@storybook/addon-essentials": "
|
|
59
|
-
"@storybook/builder-vite": "
|
|
60
|
-
"@storybook/react": "
|
|
58
|
+
"@storybook/addon-essentials": "8.6.14",
|
|
59
|
+
"@storybook/builder-vite": "8.6.14",
|
|
60
|
+
"@storybook/react": "8.6.14",
|
|
61
61
|
"magic-string": "0.30.18",
|
|
62
62
|
"react-docgen": "7.0.3",
|
|
63
63
|
"unplugin-auto-import": "19.3.0",
|
|
64
64
|
"vite-plugin-node-polyfills": "0.23.0"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@storybook/types": "
|
|
67
|
+
"@storybook/types": "8.6.14",
|
|
68
68
|
"@types/node": "20.19.17",
|
|
69
69
|
"tsx": "4.20.5",
|
|
70
70
|
"typescript": "5.9.2",
|
|
@@ -72,11 +72,11 @@
|
|
|
72
72
|
"vitest": "3.2.4"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"@cedarjs/project-config": "1.0.0-canary.
|
|
76
|
-
"@cedarjs/router": "1.0.0-canary.
|
|
75
|
+
"@cedarjs/project-config": "1.0.0-canary.12735",
|
|
76
|
+
"@cedarjs/router": "1.0.0-canary.12735",
|
|
77
77
|
"react": "19.0.0-rc-f2df5694-20240916",
|
|
78
78
|
"react-dom": "19.0.0-rc-f2df5694-20240916",
|
|
79
|
-
"storybook": "
|
|
79
|
+
"storybook": "8.6.14"
|
|
80
80
|
},
|
|
81
81
|
"engines": {
|
|
82
82
|
"node": "=20.x"
|
|
@@ -91,5 +91,5 @@
|
|
|
91
91
|
],
|
|
92
92
|
"platform": "node"
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "a92c00e5ebaa75a4210064e1b0d27ca9d971822c"
|
|
95
95
|
}
|