@storybook/ember 7.1.0-alpha.1 → 7.1.0-alpha.11
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.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +7 -7
- package/preset.js +1 -1
package/dist/index.js
CHANGED
@@ -8,4 +8,5 @@ Object.defineProperty(exports, "configure", { enumerable: true, get: function ()
|
|
8
8
|
Object.defineProperty(exports, "forceReRender", { enumerable: true, get: function () { return preview_1.forceReRender; } });
|
9
9
|
Object.defineProperty(exports, "raw", { enumerable: true, get: function () { return preview_1.raw; } });
|
10
10
|
// optimization: stop HMR propagation in webpack
|
11
|
-
module
|
11
|
+
if (typeof module !== 'undefined')
|
12
|
+
module?.hot?.decline();
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/ember",
|
3
|
-
"version": "7.1.0-alpha.
|
3
|
+
"version": "7.1.0-alpha.11",
|
4
4
|
"description": "Storybook for Ember: Develop Ember Component in isolation with Hot Reloading.",
|
5
5
|
"homepage": "https://github.com/storybookjs/storybook/tree/main/frameworks/ember",
|
6
6
|
"bugs": {
|
@@ -31,12 +31,12 @@
|
|
31
31
|
"prep": "../../../scripts/prepare/tsc.ts"
|
32
32
|
},
|
33
33
|
"dependencies": {
|
34
|
-
"@storybook/builder-webpack5": "7.1.0-alpha.
|
35
|
-
"@storybook/core-common": "7.1.0-alpha.
|
36
|
-
"@storybook/docs-tools": "7.1.0-alpha.
|
34
|
+
"@storybook/builder-webpack5": "7.1.0-alpha.11",
|
35
|
+
"@storybook/core-common": "7.1.0-alpha.11",
|
36
|
+
"@storybook/docs-tools": "7.1.0-alpha.11",
|
37
37
|
"@storybook/global": "^5.0.0",
|
38
|
-
"@storybook/preview-api": "7.1.0-alpha.
|
39
|
-
"@storybook/types": "7.1.0-alpha.
|
38
|
+
"@storybook/preview-api": "7.1.0-alpha.11",
|
39
|
+
"@storybook/types": "7.1.0-alpha.11",
|
40
40
|
"ts-dedent": "^2.0.0"
|
41
41
|
},
|
42
42
|
"devDependencies": {
|
@@ -59,5 +59,5 @@
|
|
59
59
|
"access": "public"
|
60
60
|
},
|
61
61
|
"bundler": {},
|
62
|
-
"gitHead": "
|
62
|
+
"gitHead": "0797ab602bc569ff71c343a2b1aaba7e49232d95"
|
63
63
|
}
|
package/preset.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
module.exports = require('./dist/
|
1
|
+
module.exports = require('./dist/preset');
|