Skip to content

Commit 4bf5ed9

Browse files
authored
fix(cli): use importModule to generate component-meta output (#77)
1 parent 0c79b54 commit 4bf5ed9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/cli/generate.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { join, relative, resolve } from 'pathe'
44
import pkg from '../../package.json' assert { type: 'json' }
55
import { loadKit } from './utils/kit'
66
import { clearBuildDir } from './utils/fs'
7+
import { importModule } from './utils/esm'
78

89
const privateKeys = new Set([
910
'fullPath',
@@ -97,7 +98,7 @@ export const generate = defineCommand({
9798
await clearBuildDir(outputDir)
9899
await buildNuxt(nuxt)
99100

100-
const components = await import(inputSource).then((m: any) => m.default || m)
101+
const components = await importModule(inputSource).then((m: any) => m.default || m)
101102

102103
await Promise.all([
103104
copyFile(inputTypes, outputTypes),

0 commit comments

Comments
 (0)