@storybook/html-vite 7.0.0-alpha.58
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +0 -0
- package/dist/preset.d.ts +5 -0
- package/dist/preset.js +1 -0
- package/dist/preset.mjs +1 -0
- package/package.json +85 -0
- package/preset.js +1 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Storybook for HTML
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { StorybookConfig } from '@storybook/builder-vite';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var b=Object.defineProperty;var y=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var k=Object.prototype.hasOwnProperty;var p=(r,o,i,e)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of f(o))!k.call(r,t)&&t!==i&&b(r,t,{get:()=>o[t],enumerable:!(e=y(o,t))||e.enumerable});return r};var d=r=>p(b({},"__esModule",{value:!0}),r);var g={};module.exports=d(g);
|
package/dist/index.mjs
ADDED
|
File without changes
|
package/dist/preset.d.ts
ADDED
package/dist/preset.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var b=Object.defineProperty;var y=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var l=(r,o)=>{for(var t in o)b(r,t,{get:o[t],enumerable:!0})},n=(r,o,t,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of k(o))!d.call(r,e)&&e!==t&&b(r,e,{get:()=>o[e],enumerable:!(i=y(o,e))||i.enumerable});return r};var s=r=>n(b({},"__esModule",{value:!0}),r);var f={};l(f,{core:()=>c});module.exports=s(f);var c={builder:"@storybook/builder-vite",renderer:"@storybook/html"};0&&(module.exports={core});
|
package/dist/preset.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var core={builder:"@storybook/builder-vite",renderer:"@storybook/html"};export{core};
|
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@storybook/html-vite",
|
|
3
|
+
"version": "7.0.0-alpha.58",
|
|
4
|
+
"description": "Storybook for HTML and Vite: Develop HTML in isolation with Hot Reloading.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"storybook"
|
|
7
|
+
],
|
|
8
|
+
"homepage": "https://github.com/storybookjs/storybook/tree/main/frameworks/html-vite",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/storybookjs/storybook/issues"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/storybookjs/storybook.git",
|
|
15
|
+
"directory": "frameworks/html-vite"
|
|
16
|
+
},
|
|
17
|
+
"funding": {
|
|
18
|
+
"type": "opencollective",
|
|
19
|
+
"url": "https://opencollective.com/storybook"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"require": "./dist/index.js",
|
|
25
|
+
"import": "./dist/index.mjs",
|
|
26
|
+
"types": "./dist/index.d.ts"
|
|
27
|
+
},
|
|
28
|
+
"./preset": {
|
|
29
|
+
"require": "./dist/preset.js",
|
|
30
|
+
"import": "./dist/preset.mjs",
|
|
31
|
+
"types": "./dist/preset.d.ts"
|
|
32
|
+
},
|
|
33
|
+
"./package.json": {
|
|
34
|
+
"require": "./package.json",
|
|
35
|
+
"import": "./package.json",
|
|
36
|
+
"types": "./package.json"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"main": "dist/index.js",
|
|
40
|
+
"module": "dist/index.mjs",
|
|
41
|
+
"types": "dist/index.d.ts",
|
|
42
|
+
"files": [
|
|
43
|
+
"dist/**/*",
|
|
44
|
+
"types/**/*",
|
|
45
|
+
"README.md",
|
|
46
|
+
"*.js",
|
|
47
|
+
"*.d.ts"
|
|
48
|
+
],
|
|
49
|
+
"scripts": {
|
|
50
|
+
"check": "tsc --noEmit",
|
|
51
|
+
"prep": "../../../scripts/prepare/bundle.ts"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@storybook/addons": "7.0.0-alpha.58",
|
|
55
|
+
"@storybook/builder-vite": "7.0.0-alpha.58",
|
|
56
|
+
"@storybook/channel-postmessage": "7.0.0-alpha.58",
|
|
57
|
+
"@storybook/channel-websocket": "7.0.0-alpha.58",
|
|
58
|
+
"@storybook/client-api": "7.0.0-alpha.58",
|
|
59
|
+
"@storybook/core-server": "7.0.0-alpha.58",
|
|
60
|
+
"@storybook/html": "7.0.0-alpha.58",
|
|
61
|
+
"@storybook/node-logger": "7.0.0-alpha.58",
|
|
62
|
+
"@storybook/preview-web": "7.0.0-alpha.58",
|
|
63
|
+
"magic-string": "^0.26.1",
|
|
64
|
+
"vite": "3"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@types/node": "^16.0.0",
|
|
68
|
+
"typescript": "~4.6.3",
|
|
69
|
+
"vite": "^3.1.0"
|
|
70
|
+
},
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": "^14.18 || >=16"
|
|
73
|
+
},
|
|
74
|
+
"publishConfig": {
|
|
75
|
+
"access": "public"
|
|
76
|
+
},
|
|
77
|
+
"bundler": {
|
|
78
|
+
"entries": [
|
|
79
|
+
"./src/index.ts",
|
|
80
|
+
"./src/preset.ts"
|
|
81
|
+
],
|
|
82
|
+
"platform": "node"
|
|
83
|
+
},
|
|
84
|
+
"gitHead": "c7f8e3e8486ab5caf3da0ef016acfd2065f0dc05"
|
|
85
|
+
}
|
package/preset.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./dist/preset');
|