@storybook/server-webpack5 9.1.2 → 9.1.4
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/README.md +4 -2
- package/package.json +9 -6
package/README.md
CHANGED
@@ -29,7 +29,7 @@ export const parameters = {
|
|
29
29
|
|
30
30
|
The URL you connect to should have the ability to render a story, see [server rendering](#server-rendering) below.
|
31
31
|
|
32
|
-
For more information visit: [storybook.js.org](https://storybook.js.org)
|
32
|
+
For more information visit: [storybook.js.org](https://storybook.js.org?ref=readme)
|
33
33
|
|
34
34
|
## Writing Stories
|
35
35
|
|
@@ -230,7 +230,7 @@ Just like CSF stories we can define `argTypes` to specify the controls used in t
|
|
230
230
|
|
231
231
|
## Addon compatibility
|
232
232
|
|
233
|
-
Storybook also comes with a lot of [addons](https://storybook.js.org/addons) and a great API to customize as you wish. As some addons assume the story is rendered in JS, they may not work with `@storybook/server` (yet!).
|
233
|
+
Storybook also comes with a lot of [addons](https://storybook.js.org/addons?ref=readme) and a great API to customize as you wish. As some addons assume the story is rendered in JS, they may not work with `@storybook/server` (yet!).
|
234
234
|
|
235
235
|
Many addons that act on the manager side (such as `backgrounds` and `viewport`) will work out of the box with `@storybook/server` -- you can configure them with parameters written on the server as usual.
|
236
236
|
|
@@ -315,3 +315,5 @@ type FetchStoryHtmlType = (
|
|
315
315
|
- id: Id of the story being rendered given by `parameters.server.id`
|
316
316
|
- params: Merged story params `parameters.server.params`and story args
|
317
317
|
- context: The context of the story
|
318
|
+
|
319
|
+
Learn more about Storybook at [storybook.js.org](https://storybook.js.org/?ref=readme).
|
package/package.json
CHANGED
@@ -1,9 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/server-webpack5",
|
3
|
-
"version": "9.1.
|
3
|
+
"version": "9.1.4",
|
4
4
|
"description": "Storybook for Server: View HTML snippets from a server in isolation with Hot Reloading.",
|
5
5
|
"keywords": [
|
6
|
-
"storybook"
|
6
|
+
"storybook",
|
7
|
+
"server",
|
8
|
+
"component",
|
9
|
+
"components"
|
7
10
|
],
|
8
11
|
"homepage": "https://github.com/storybookjs/storybook/tree/next/code/frameworks/server-webpack5",
|
9
12
|
"bugs": {
|
@@ -54,16 +57,16 @@
|
|
54
57
|
"prep": "jiti ../../../scripts/prepare/bundle.ts"
|
55
58
|
},
|
56
59
|
"dependencies": {
|
57
|
-
"@storybook/builder-webpack5": "9.1.
|
58
|
-
"@storybook/preset-server-webpack": "9.1.
|
59
|
-
"@storybook/server": "9.1.
|
60
|
+
"@storybook/builder-webpack5": "9.1.4",
|
61
|
+
"@storybook/preset-server-webpack": "9.1.4",
|
62
|
+
"@storybook/server": "9.1.4"
|
60
63
|
},
|
61
64
|
"devDependencies": {
|
62
65
|
"@types/node": "^22.0.0",
|
63
66
|
"typescript": "^5.8.3"
|
64
67
|
},
|
65
68
|
"peerDependencies": {
|
66
|
-
"storybook": "^9.1.
|
69
|
+
"storybook": "^9.1.4"
|
67
70
|
},
|
68
71
|
"engines": {
|
69
72
|
"node": ">=20.0.0"
|