@vueless/storybook 1.5.3-beta.0 → 1.5.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/.storybook-ts/tsconfig.json +0 -3
- package/package.json +26 -24
- package/webTypes/lib/build.js +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vueless/storybook",
|
|
3
|
-
"version": "1.5.3
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "Simplifies Storybook configuration for Vueless UI library.",
|
|
5
5
|
"author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -23,40 +23,42 @@
|
|
|
23
23
|
"release:major": "release-it major --ci"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@storybook/addon-docs": "^10.3.
|
|
27
|
-
"@storybook/addon-links": "^10.3.
|
|
28
|
-
"@storybook/addon-themes": "^10.3.
|
|
29
|
-
"@storybook/vue3-vite": "^10.3.
|
|
26
|
+
"@storybook/addon-docs": "^10.3.6",
|
|
27
|
+
"@storybook/addon-links": "^10.3.6",
|
|
28
|
+
"@storybook/addon-themes": "^10.3.6",
|
|
29
|
+
"@storybook/vue3-vite": "^10.3.6",
|
|
30
30
|
"@vueless/storybook-dark-mode": "^10.0.7",
|
|
31
|
-
"chokidar": "^
|
|
32
|
-
"esbuild": "^0.
|
|
33
|
-
"globby": "^
|
|
31
|
+
"chokidar": "^5.0.0",
|
|
32
|
+
"esbuild": "^0.28.0",
|
|
33
|
+
"globby": "^16.2.0",
|
|
34
34
|
"mkdirp": "^3.0.1",
|
|
35
35
|
"prettier2": "npm:prettier@2.8.8",
|
|
36
|
-
"storybook": "^10.3.
|
|
36
|
+
"storybook": "^10.3.6",
|
|
37
37
|
"vue-docgen-api": "^4.79.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
+
"@eslint/js": "^10.0.1",
|
|
40
41
|
"@release-it/bumper": "^7.0.5",
|
|
41
|
-
"@release-it/conventional-changelog": "^
|
|
42
|
-
"@stylistic/eslint-plugin": "^5.
|
|
43
|
-
"@types/node": "^
|
|
44
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
45
|
-
"eslint": "^
|
|
42
|
+
"@release-it/conventional-changelog": "^11.0.0",
|
|
43
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
44
|
+
"@types/node": "^25.6.0",
|
|
45
|
+
"@vitejs/plugin-vue": "^6.0.6",
|
|
46
|
+
"eslint": "^10.2.1",
|
|
46
47
|
"eslint-config-prettier": "^10.1.8",
|
|
47
48
|
"eslint-plugin-node": "^11.1.0",
|
|
48
|
-
"eslint-plugin-prettier": "^5.5.
|
|
49
|
-
"eslint-plugin-storybook": "^10.3.
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"typescript
|
|
55
|
-
"
|
|
49
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
50
|
+
"eslint-plugin-storybook": "^10.3.6",
|
|
51
|
+
"globals": "^17.5.0",
|
|
52
|
+
"prettier": "^3.8.3",
|
|
53
|
+
"release-it": "^20.0.1",
|
|
54
|
+
"tailwindcss": "^4.2.4",
|
|
55
|
+
"typescript": "^6.0.3",
|
|
56
|
+
"typescript-eslint": "^8.59.0",
|
|
57
|
+
"vite": "^8.0.10",
|
|
56
58
|
"vue": "latest",
|
|
57
59
|
"vue-router": "latest",
|
|
58
|
-
"vue-tsc": "^3.
|
|
59
|
-
"vueless": "^1.
|
|
60
|
+
"vue-tsc": "^3.2.7",
|
|
61
|
+
"vueless": "^1.4.7"
|
|
60
62
|
},
|
|
61
63
|
"type": "module",
|
|
62
64
|
"main": "index.js",
|
package/webTypes/lib/build.js
CHANGED
|
@@ -52,7 +52,10 @@ async function rebuild(config, files, cachedContent, vuelessConfig) {
|
|
|
52
52
|
// if we are initializing the current file, parse all components
|
|
53
53
|
await Promise.all(files.map(cacheWebTypesContent));
|
|
54
54
|
} catch (e) {
|
|
55
|
-
throw new Error(
|
|
55
|
+
throw new Error(
|
|
56
|
+
`Error building file ${config.outFile}: ${e instanceof Error ? e.message : String(e)}`,
|
|
57
|
+
{ cause: e },
|
|
58
|
+
);
|
|
56
59
|
}
|
|
57
60
|
|
|
58
61
|
// and finally, save all concatenated values to the Markdown file
|