@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.
@@ -16,9 +16,6 @@
16
16
  "composite": true,
17
17
  "noEmit": true,
18
18
 
19
- /* Path settings */
20
- "baseUrl": ".",
21
-
22
19
  /* Enables all strict type-checking options. */
23
20
  "strict": true,
24
21
  "noImplicitThis": true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vueless/storybook",
3
- "version": "1.5.3-beta.0",
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.3",
27
- "@storybook/addon-links": "^10.3.3",
28
- "@storybook/addon-themes": "^10.3.3",
29
- "@storybook/vue3-vite": "^10.3.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": "^4.0.3",
32
- "esbuild": "^0.25.9",
33
- "globby": "^14.1.0",
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.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": "^10.0.4",
42
- "@stylistic/eslint-plugin": "^5.2.3",
43
- "@types/node": "^24.3.0",
44
- "@vitejs/plugin-vue": "^6.0.1",
45
- "eslint": "^9.33.0",
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.4",
49
- "eslint-plugin-storybook": "^10.3.3",
50
- "prettier": "^3.6.2",
51
- "release-it": "^19.2.4",
52
- "tailwindcss": "^4.1.12",
53
- "typescript": "^5.9.2",
54
- "typescript-eslint": "^8.40.0",
55
- "vite": "^7.1.11",
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.0.6",
59
- "vueless": "^1.3.1"
60
+ "vue-tsc": "^3.2.7",
61
+ "vueless": "^1.4.7"
60
62
  },
61
63
  "type": "module",
62
64
  "main": "index.js",
@@ -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(`Error building file ${config.outFile}: ${e.message}`);
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