@storybook/ember 9.1.1 → 9.1.3
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 +8 -6
- package/package.json +12 -5
package/README.md
CHANGED
@@ -15,18 +15,18 @@ cd my-ember-app
|
|
15
15
|
npx storybook@latest init
|
16
16
|
```
|
17
17
|
|
18
|
-
For more information visit: [storybook.js.org](https://storybook.js.org)
|
18
|
+
For more information visit: [storybook.js.org](https://storybook.js.org?ref=readme)
|
19
19
|
|
20
20
|
---
|
21
21
|
|
22
|
-
Storybook also comes with a lot of [addons](https://storybook.js.org/addons) and a great API to customize as you wish.
|
23
|
-
You can also build a [static version](https://storybook.js.org/docs/sharing/publish-storybook?renderer=ember) of your Storybook and deploy it anywhere you want.
|
22
|
+
Storybook also comes with a lot of [addons](https://storybook.js.org/addons?ref=readme) and a great API to customize as you wish.
|
23
|
+
You can also build a [static version](https://storybook.js.org/docs/sharing/publish-storybook?renderer=ember&ref=readme) of your Storybook and deploy it anywhere you want.
|
24
24
|
|
25
25
|
## Docs
|
26
26
|
|
27
|
-
- [Basics](https://storybook.js.org/docs/get-started/install?renderer=ember)
|
28
|
-
- [Configurations](https://storybook.js.org/docs/configure?renderer=ember)
|
29
|
-
- [Addons](https://storybook.js.org/docs/configure/user-interface/storybook-addons?renderer=ember)
|
27
|
+
- [Basics](https://storybook.js.org/docs/get-started/install?renderer=ember&ref=readme)
|
28
|
+
- [Configurations](https://storybook.js.org/docs/configure?renderer=ember&ref=readme)
|
29
|
+
- [Addons](https://storybook.js.org/docs/configure/user-interface/storybook-addons?renderer=ember&ref=readme)
|
30
30
|
|
31
31
|
## Working with polyfills
|
32
32
|
|
@@ -51,3 +51,5 @@ export default {
|
|
51
51
|
[...]
|
52
52
|
};
|
53
53
|
```
|
54
|
+
|
55
|
+
Learn more about Storybook at [storybook.js.org](https://storybook.js.org/?ref=readme).
|
package/package.json
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/ember",
|
3
|
-
"version": "9.1.
|
4
|
-
"description": "Storybook for Ember: Develop, document, and test
|
3
|
+
"version": "9.1.3",
|
4
|
+
"description": "Storybook for Ember: Develop, document, and test UI components in isolation",
|
5
|
+
"keywords": [
|
6
|
+
"storybook",
|
7
|
+
"storybook-framework",
|
8
|
+
"ember",
|
9
|
+
"component",
|
10
|
+
"components"
|
11
|
+
],
|
5
12
|
"homepage": "https://github.com/storybookjs/storybook/tree/next/code/frameworks/ember",
|
6
13
|
"bugs": {
|
7
14
|
"url": "https://github.com/storybookjs/storybook/issues"
|
@@ -49,7 +56,7 @@
|
|
49
56
|
"prep": "jiti ../../../scripts/prepare/tsc.ts"
|
50
57
|
},
|
51
58
|
"dependencies": {
|
52
|
-
"@storybook/builder-webpack5": "9.1.
|
59
|
+
"@storybook/builder-webpack5": "9.1.3",
|
53
60
|
"@storybook/global": "^5.0.0",
|
54
61
|
"babel-loader": "9.1.3",
|
55
62
|
"find-up": "^7.0.0"
|
@@ -65,7 +72,7 @@
|
|
65
72
|
"ember-source": "~3.28.1 || >=4.0.0",
|
66
73
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
67
74
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
68
|
-
"storybook": "^9.1.
|
75
|
+
"storybook": "^9.1.3"
|
69
76
|
},
|
70
77
|
"engines": {
|
71
78
|
"node": ">=20.0.0"
|
@@ -74,5 +81,5 @@
|
|
74
81
|
"access": "public"
|
75
82
|
},
|
76
83
|
"bundler": {},
|
77
|
-
"gitHead": "
|
84
|
+
"gitHead": "ce6a1e4a8d5ad69c699021a0b183df89cfc7b684"
|
78
85
|
}
|