Skip to content

Commit db7943a

Browse files
committed
fix(parser): parsed components should store as object
1 parent 09a96cd commit db7943a

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

src/parser.ts

+10-7
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,16 @@ export function useComponentMetaParser (
7373
}
7474

7575
const getStringifiedComponents = () => {
76-
const _components = Object.keys(components).map((key) => ({
77-
...components[key],
78-
fullPath: undefined,
79-
shortPath: undefined,
80-
export: undefined
81-
}))
82-
return JSON.stringify(_components, null, 2)
76+
const _components = Object.keys(components).map((key) => ([
77+
key,
78+
{
79+
...components[key],
80+
fullPath: undefined,
81+
shortPath: undefined,
82+
export: undefined
83+
}
84+
]))
85+
return JSON.stringify(Object.fromEntries(_components), null, 2)
8386
}
8487

8588
const getVirtualModuleContent = () => `export default ${getStringifiedComponents()}`

0 commit comments

Comments
 (0)