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.
- package/cli/index.mjs +1 -1
- 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/
|
|
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)) {
|