@storybook/cli 10.1.0-alpha.10 → 10.1.0-alpha.12
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-chunks/{block-dependencies-versions-2APKKCLU.js → block-dependencies-versions-QNU3AJML.js} +13 -16
- package/dist/_node-chunks/{block-experimental-addon-test-DSHFNBHE.js → block-experimental-addon-test-7ID6U4ZB.js} +16 -23
- package/dist/_node-chunks/{block-major-version-L7KR5JAX.js → block-major-version-RQBG4GU3.js} +25 -48
- package/dist/_node-chunks/{block-node-version-G63QHY2C.js → block-node-version-RG4TKZVB.js} +13 -18
- package/dist/_node-chunks/{block-webpack5-frameworks-5MISMG7G.js → block-webpack5-frameworks-EOHC7MGO.js} +14 -19
- package/dist/_node-chunks/chunk-AYSGWBPB.js +1340 -0
- package/dist/_node-chunks/chunk-G7WNAI4O.js +11 -0
- package/dist/_node-chunks/chunk-P7TBIJSH.js +1160 -0
- package/dist/_node-chunks/{chunk-WW7YB2UR.js → chunk-VFUI46B4.js} +14 -19
- package/dist/_node-chunks/chunk-ZAQE57EP.js +4375 -0
- package/dist/_node-chunks/{globby-ZUUYKWYQ.js → globby-AN5NTFOS.js} +8 -8
- package/dist/_node-chunks/p-limit-UJQPNFP6.js +116 -0
- package/dist/_node-chunks/run-662PQ5Z3.js +9598 -0
- package/dist/bin/index.js +10 -13
- package/package.json +5 -5
- package/dist/_node-chunks/chunk-EWHTUHNQ.js +0 -6737
- package/dist/_node-chunks/chunk-PW42J35B.js +0 -1770
- package/dist/_node-chunks/chunk-S5E3PR7E.js +0 -1939
- package/dist/_node-chunks/chunk-YA5UBW6S.js +0 -24
- package/dist/_node-chunks/p-limit-OXOGURRS.js +0 -168
- package/dist/_node-chunks/run-3URSVYYH.js +0 -11467
package/dist/bin/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
2
|
+
import CJS_COMPAT_NODE_URL_cnh1zw3akmi from 'node:url';
|
|
3
|
+
import CJS_COMPAT_NODE_PATH_cnh1zw3akmi from 'node:path';
|
|
4
|
+
import CJS_COMPAT_NODE_MODULE_cnh1zw3akmi from "node:module";
|
|
5
5
|
|
|
6
|
-
var __filename =
|
|
7
|
-
var __dirname =
|
|
8
|
-
var require =
|
|
6
|
+
var __filename = CJS_COMPAT_NODE_URL_cnh1zw3akmi.fileURLToPath(import.meta.url);
|
|
7
|
+
var __dirname = CJS_COMPAT_NODE_PATH_cnh1zw3akmi.dirname(__filename);
|
|
8
|
+
var require = CJS_COMPAT_NODE_MODULE_cnh1zw3akmi.createRequire(import.meta.url);
|
|
9
9
|
|
|
10
10
|
// ------------------------------------------------------------
|
|
11
11
|
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
|
@@ -15,11 +15,8 @@ var require = CJS_COMPAT_NODE_MODULE_e1ht8tui1x8.createRequire(import.meta.url);
|
|
|
15
15
|
import { logger } from "storybook/internal/node-logger";
|
|
16
16
|
import { dedent } from "ts-dedent";
|
|
17
17
|
var [majorNodeVersion, minorNodeVersion] = process.versions.node.split(".").map(Number);
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
dedent`To run Storybook, you need Node.js version 20.19+ or 22.12+.
|
|
18
|
+
(majorNodeVersion < 20 || majorNodeVersion === 20 && minorNodeVersion < 19 || majorNodeVersion === 22 && minorNodeVersion < 12) && (logger.error(
|
|
19
|
+
dedent`To run Storybook, you need Node.js version 20.19+ or 22.12+.
|
|
21
20
|
You are currently running Node.js ${process.version}. Please upgrade your Node.js installation.`
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
import("../_node-chunks/run-3URSVYYH.js");
|
|
21
|
+
), process.exit(1));
|
|
22
|
+
import("../_node-chunks/run-662PQ5Z3.js");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storybook/cli",
|
|
3
|
-
"version": "10.1.0-alpha.
|
|
3
|
+
"version": "10.1.0-alpha.12",
|
|
4
4
|
"description": "Storybook CLI: Develop, document, and test UI components in isolation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook",
|
|
@@ -41,13 +41,13 @@
|
|
|
41
41
|
"prep": "jiti ../../../scripts/build/build-package.ts"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@storybook/codemod": "10.1.0-alpha.
|
|
44
|
+
"@storybook/codemod": "10.1.0-alpha.12",
|
|
45
45
|
"@types/semver": "^7.3.4",
|
|
46
46
|
"commander": "^14.0.1",
|
|
47
|
-
"create-storybook": "10.1.0-alpha.
|
|
47
|
+
"create-storybook": "10.1.0-alpha.12",
|
|
48
48
|
"giget": "^2.0.0",
|
|
49
49
|
"jscodeshift": "^0.15.1",
|
|
50
|
-
"storybook": "10.1.0-alpha.
|
|
50
|
+
"storybook": "10.1.0-alpha.12",
|
|
51
51
|
"ts-dedent": "^2.0.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"access": "public"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "a8e7fd8a655c69780bc20b9749d2699e45beae1l"
|
|
76
76
|
}
|