diff --git a/.npmrc b/.npmrc new file mode 100644 index 00000000..3bd3b7de --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +shell-emulator=true diff --git a/apps/www/__registry__/index.ts b/apps/www/__registry__/index.ts index b24d3ade..c3d085c6 100644 --- a/apps/www/__registry__/index.ts +++ b/apps/www/__registry__/index.ts @@ -777,21 +777,21 @@ export const Index = { type: 'components:example', registryDependencies: ['button', 'card', 'themes', 'config'], component: () => import('../src/lib/registry/default/example/Cards/ActivityGoal.vue').then(m => m.default), - files: ['../src/lib/registry/default/example/Cards/ActivityGoal.vue'], + files: ['../src/lib/registry/default/example/ActivityGoal.vue'], }, DataTable: { name: 'DataTable', type: 'components:example', registryDependencies: ['button', 'checkbox', 'dropdown-menu', 'input', 'table', 'card', 'utils'], component: () => import('../src/lib/registry/default/example/Cards/DataTable.vue').then(m => m.default), - files: ['../src/lib/registry/default/example/Cards/DataTable.vue'], + files: ['../src/lib/registry/default/example/DataTable.vue'], }, Metric: { name: 'Metric', type: 'components:example', registryDependencies: ['card', 'config'], component: () => import('../src/lib/registry/default/example/Cards/Metric.vue').then(m => m.default), - files: ['../src/lib/registry/default/example/Cards/Metric.vue'], + files: ['../src/lib/registry/default/example/Metric.vue'], }, }, 'new-york': { @@ -1570,21 +1570,21 @@ export const Index = { type: 'components:example', registryDependencies: ['button', 'card', 'themes', 'config'], component: () => import('../src/lib/registry/new-york/example/Cards/ActivityGoal.vue').then(m => m.default), - files: ['../src/lib/registry/new-york/example/Cards/ActivityGoal.vue'], + files: ['../src/lib/registry/new-york/example/ActivityGoal.vue'], }, DataTable: { name: 'DataTable', type: 'components:example', registryDependencies: ['button', 'checkbox', 'dropdown-menu', 'input', 'table', 'card', 'utils'], component: () => import('../src/lib/registry/new-york/example/Cards/DataTable.vue').then(m => m.default), - files: ['../src/lib/registry/new-york/example/Cards/DataTable.vue'], + files: ['../src/lib/registry/new-york/example/DataTable.vue'], }, Metric: { name: 'Metric', type: 'components:example', registryDependencies: ['card', 'config'], component: () => import('../src/lib/registry/new-york/example/Cards/Metric.vue').then(m => m.default), - files: ['../src/lib/registry/new-york/example/Cards/Metric.vue'], + files: ['../src/lib/registry/new-york/example/Metric.vue'], }, }, } diff --git a/packages/cli/package.json b/packages/cli/package.json index 0e76cdd6..da429c4e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -35,7 +35,7 @@ "clean": "rimraf dist && rimraf components", "lint": "eslint .", "lint:fix": "eslint --fix .", - "start:dev": "cross-env COMPONENTS_REGISTRY_URL=http://localhost:3001 node dist/index.js", + "start:dev": "COMPONENTS_REGISTRY_URL=http://localhost:3001 node dist/index.js", "start": "node dist/index.js", "release": "changeset version", "pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",