artharexian-ui 0.2.7 → 0.2.8

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.
Files changed (2) hide show
  1. package/cli/index.mjs +1 -1
  2. package/package.json +1 -1
package/cli/index.mjs CHANGED
@@ -14,7 +14,7 @@ const component = args[1]
14
14
  const cwd = process.cwd()
15
15
 
16
16
  // Try installed package first, then fallback to local components (for development)
17
- let registryRoot = path.resolve(cwd, 'node_modules/artharexian-ui/registry')
17
+ let registryRoot = path.resolve(cwd, 'node_modules/artharexian-ui/src/components')
18
18
  if (!fs.existsSync(registryRoot)) {
19
19
  const localRegistry = path.resolve(__dirname, '../src/components')
20
20
  if (fs.existsSync(localRegistry)) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "artharexian-ui",
3
3
  "description": "Vue 3 UI component library",
4
- "version": "0.2.7",
4
+ "version": "0.2.8",
5
5
  "license": "MIT",
6
6
  "private": false,
7
7
  "type": "module",