@storybook/web-components-vite 10.2.0-alpha.1 → 10.2.0-alpha.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/dist/node/index.d.ts +1 -1
- package/dist/node/index.js +6 -6
- package/dist/preset.js +6 -6
- package/package.json +4 -8
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_ijyp0214v7b from 'node:url';
|
|
2
|
+
import CJS_COMPAT_NODE_PATH_ijyp0214v7b from 'node:path';
|
|
3
|
+
import CJS_COMPAT_NODE_MODULE_ijyp0214v7b from "node:module";
|
|
4
4
|
|
|
5
|
-
var __filename =
|
|
6
|
-
var __dirname =
|
|
7
|
-
var require =
|
|
5
|
+
var __filename = CJS_COMPAT_NODE_URL_ijyp0214v7b.fileURLToPath(import.meta.url);
|
|
6
|
+
var __dirname = CJS_COMPAT_NODE_PATH_ijyp0214v7b.dirname(__filename);
|
|
7
|
+
var require = CJS_COMPAT_NODE_MODULE_ijyp0214v7b.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_ijyp0214v7b from 'node:url';
|
|
2
|
+
import CJS_COMPAT_NODE_PATH_ijyp0214v7b from 'node:path';
|
|
3
|
+
import CJS_COMPAT_NODE_MODULE_ijyp0214v7b from "node:module";
|
|
4
4
|
|
|
5
|
-
var __filename =
|
|
6
|
-
var __dirname =
|
|
7
|
-
var require =
|
|
5
|
+
var __filename = CJS_COMPAT_NODE_URL_ijyp0214v7b.fileURLToPath(import.meta.url);
|
|
6
|
+
var __dirname = CJS_COMPAT_NODE_PATH_ijyp0214v7b.dirname(__filename);
|
|
7
|
+
var require = CJS_COMPAT_NODE_MODULE_ijyp0214v7b.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/web-components-vite",
|
|
3
|
-
"version": "10.2.0-alpha.
|
|
3
|
+
"version": "10.2.0-alpha.3",
|
|
4
4
|
"description": "Storybook for Web Components and Vite: Develop, document, and test UI components in isolation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"storybook",
|
|
@@ -47,20 +47,16 @@
|
|
|
47
47
|
"*.d.ts",
|
|
48
48
|
"!src/**/*"
|
|
49
49
|
],
|
|
50
|
-
"scripts": {
|
|
51
|
-
"check": "jiti ../../../scripts/check/check-package.ts",
|
|
52
|
-
"prep": "jiti ../../../scripts/build/build-package.ts"
|
|
53
|
-
},
|
|
54
50
|
"dependencies": {
|
|
55
|
-
"@storybook/builder-vite": "10.2.0-alpha.
|
|
56
|
-
"@storybook/web-components": "10.2.0-alpha.
|
|
51
|
+
"@storybook/builder-vite": "10.2.0-alpha.3",
|
|
52
|
+
"@storybook/web-components": "10.2.0-alpha.3"
|
|
57
53
|
},
|
|
58
54
|
"devDependencies": {
|
|
59
55
|
"@types/node": "^22.0.0",
|
|
60
56
|
"typescript": "^5.8.3"
|
|
61
57
|
},
|
|
62
58
|
"peerDependencies": {
|
|
63
|
-
"storybook": "^10.2.0-alpha.
|
|
59
|
+
"storybook": "^10.2.0-alpha.3"
|
|
64
60
|
},
|
|
65
61
|
"publishConfig": {
|
|
66
62
|
"access": "public"
|