@witchcraft/ui 0.2.2 → 0.2.4

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "witchcraftUi",
3
3
  "configKey": "witchcraftUi",
4
- "version": "0.2.2",
4
+ "version": "0.2.4",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
package/dist/module.mjs CHANGED
@@ -21,7 +21,7 @@ const pkg = {
21
21
  const knownDirectives = ["vExtractRootEl", "vResizableCols", "vResizeObserver", "vResizableCols"];
22
22
  const { resolve, resolvePath } = createResolver(import.meta.url);
23
23
  const componentsInfo = globFiles([
24
- `${resolve("./runtime/components")}/**/*.vue*`,
24
+ `${resolve("./runtime/components")}/**/*.vue`,
25
25
  `!**/Template/**.vue`
26
26
  ], [], (filepath, name) => ({
27
27
  originalName: name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@witchcraft/ui",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Vue component library.",
5
5
  "type": "module",
6
6
  "main": "./dist/runtime/main.lib.js",
package/src/module.ts CHANGED
@@ -30,7 +30,7 @@ const componentsInfo: {
30
30
  originalName: string
31
31
  filepath: string
32
32
  }[] = globFiles([
33
- `${resolve("./runtime/components")}/**/*.vue*`,
33
+ `${resolve("./runtime/components")}/**/*.vue`,
34
34
  `!**/Template/**.vue`
35
35
  ], [], (filepath: string, name: string) => ({
36
36
  originalName: name,