@storybook/server-webpack5 10.2.0-alpha.1 → 10.2.0-alpha.10
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/node/index.d.ts +1 -1
- package/dist/node/index.js +6 -6
- package/dist/preset.js +6 -6
- package/package.json +7 -11
package/dist/node/index.d.ts
CHANGED
package/dist/node/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import CJS_COMPAT_NODE_URL_5t4hs50osdf from 'node:url';
|
|
2
|
+
import CJS_COMPAT_NODE_PATH_5t4hs50osdf from 'node:path';
|
|
3
|
+
import CJS_COMPAT_NODE_MODULE_5t4hs50osdf from "node:module";
|
|
4
4
|
|
|
5
|
-
var __filename =
|
|
6
|
-
var __dirname =
|
|
7
|
-
var require =
|
|
5
|
+
var __filename = CJS_COMPAT_NODE_URL_5t4hs50osdf.fileURLToPath(import.meta.url);
|
|
6
|
+
var __dirname = CJS_COMPAT_NODE_PATH_5t4hs50osdf.dirname(__filename);
|
|
7
|
+
var require = CJS_COMPAT_NODE_MODULE_5t4hs50osdf.createRequire(import.meta.url);
|
|
8
8
|
|
|
9
9
|
// ------------------------------------------------------------
|
|
10
10
|
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
package/dist/preset.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import CJS_COMPAT_NODE_URL_5t4hs50osdf from 'node:url';
|
|
2
|
+
import CJS_COMPAT_NODE_PATH_5t4hs50osdf from 'node:path';
|
|
3
|
+
import CJS_COMPAT_NODE_MODULE_5t4hs50osdf from "node:module";
|
|
4
4
|
|
|
5
|
-
var __filename =
|
|
6
|
-
var __dirname =
|
|
7
|
-
var require =
|
|
5
|
+
var __filename = CJS_COMPAT_NODE_URL_5t4hs50osdf.fileURLToPath(import.meta.url);
|
|
6
|
+
var __dirname = CJS_COMPAT_NODE_PATH_5t4hs50osdf.dirname(__filename);
|
|
7
|
+
var require = CJS_COMPAT_NODE_MODULE_5t4hs50osdf.createRequire(import.meta.url);
|
|
8
8
|
|
|
9
9
|
// ------------------------------------------------------------
|
|
10
10
|
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/server-webpack5",
|
|
3
|
-
"version": "10.2.0-alpha.
|
|
3
|
+
"version": "10.2.0-alpha.10",
|
|
4
4
|
"description": "Storybook for Server: View HTML snippets from a server in isolation with Hot Reloading.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook",
|
|
@@ -43,21 +43,17 @@
|
|
|
43
43
|
"*.d.ts",
|
|
44
44
|
"!src/**/*"
|
|
45
45
|
],
|
|
46
|
-
"scripts": {
|
|
47
|
-
"check": "jiti ../../../scripts/check/check-package.ts",
|
|
48
|
-
"prep": "jiti ../../../scripts/build/build-package.ts"
|
|
49
|
-
},
|
|
50
46
|
"dependencies": {
|
|
51
|
-
"@storybook/builder-webpack5": "10.2.0-alpha.
|
|
52
|
-
"@storybook/preset-server-webpack": "10.2.0-alpha.
|
|
53
|
-
"@storybook/server": "10.2.0-alpha.
|
|
47
|
+
"@storybook/builder-webpack5": "10.2.0-alpha.10",
|
|
48
|
+
"@storybook/preset-server-webpack": "10.2.0-alpha.10",
|
|
49
|
+
"@storybook/server": "10.2.0-alpha.10"
|
|
54
50
|
},
|
|
55
51
|
"devDependencies": {
|
|
56
|
-
"@types/node": "^22.
|
|
57
|
-
"typescript": "^5.
|
|
52
|
+
"@types/node": "^22.19.1",
|
|
53
|
+
"typescript": "^5.9.3"
|
|
58
54
|
},
|
|
59
55
|
"peerDependencies": {
|
|
60
|
-
"storybook": "^10.2.0-alpha.
|
|
56
|
+
"storybook": "^10.2.0-alpha.10"
|
|
61
57
|
},
|
|
62
58
|
"publishConfig": {
|
|
63
59
|
"access": "public"
|