vueless 1.4.1 → 1.4.2
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 -1
- package/package.json +2 -2
- package/plugin-vite.js +4 -1
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ A UI library with Open Architecture for Vue.js 3 and Nuxt.js 3 / 4, powered by [
|
|
|
28
28
|
- 🖼️ Inline SVG icons
|
|
29
29
|
- 🪄 Auto component imports (as you use them)
|
|
30
30
|
- 🧿 Uncompiled source in npm for better DX
|
|
31
|
-
- 🧪️
|
|
31
|
+
- 🧪️ 1500+ unit tests ensuring consistent logic
|
|
32
32
|
- 🛡️ Full TypeScript support with type safety
|
|
33
33
|
|
|
34
34
|
## Built-In Storybook
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vueless",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
|
|
5
5
|
"author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
|
|
6
6
|
"homepage": "https://vueless.com",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
58
58
|
"@vue/test-utils": "^2.4.6",
|
|
59
59
|
"@vue/tsconfig": "^0.7.0",
|
|
60
|
-
"@vueless/storybook": "^1.4.
|
|
60
|
+
"@vueless/storybook": "^1.4.12",
|
|
61
61
|
"eslint": "^9.32.0",
|
|
62
62
|
"eslint-plugin-storybook": "^10.0.2",
|
|
63
63
|
"eslint-plugin-vue": "^10.3.0",
|
package/plugin-vite.js
CHANGED
|
@@ -209,7 +209,10 @@ export const Vueless = function (options = {}) {
|
|
|
209
209
|
},
|
|
210
210
|
|
|
211
211
|
/* remove cached icons */
|
|
212
|
-
buildEnd: async ()
|
|
212
|
+
buildEnd: async function () {
|
|
213
|
+
/* skip in watch mode — configResolved won't re-run */
|
|
214
|
+
if (this.meta.watchMode) return;
|
|
215
|
+
|
|
213
216
|
await removeIconsCache(basePath);
|
|
214
217
|
},
|
|
215
218
|
};
|