Skip to content

Commit 6311318

Browse files
authoredFeb 16, 2021
chore(dx): generate list of discovered components (#145)
1 parent 23715da commit 6311318

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed
 

‎src/index.ts

+6
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ const componentsModule: Module<Options> = function () {
155155
const templates = [
156156
'components/index.js',
157157
'components/plugin.js',
158+
'components/readme.md',
158159
'vetur/tags.json'
159160
]
160161
for (const t of templates) {
@@ -164,6 +165,11 @@ const componentsModule: Module<Options> = function () {
164165
options: { getComponents }
165166
})
166167
}
168+
169+
// Add CLI info to inspect discovered components
170+
const componentsListFile = path.resolve(nuxt.options.buildDir, 'components/readme.md')
171+
// eslint-disable-next-line no-console
172+
console.info('Discovered Components:', path.relative(process.cwd(), componentsListFile))
167173
})
168174
}
169175

‎src/scan.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export async function scanComponents (dirs: ScanDir[], srcDir: string): Promise<
6565

6666
const pascalName = pascalCase(componentName)
6767
const kebabName = kebabCase(componentName)
68-
const shortPath = filePath.replace(srcDir, '')
68+
const shortPath = relative(srcDir, filePath)
6969
const chunkName = 'components/' + kebabName
7070

7171
let _c = prefixComponent(prefix, {

‎templates/components/readme.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Discovered Components
2+
3+
This is an auto-generated list of components discovered by [nuxt/components](https://github.com/nuxt/components).
4+
5+
You can directly use them in pages and other components without the need to import them.
6+
7+
**Tip:** If a component is conditionally rendered with `v-if` and is big, it is better to use `Lazy` or `lazy-` prefix to lazy load.
8+
9+
<%
10+
const components = options.getComponents()
11+
const list = components.map(c => {
12+
const pascalName = c.pascalName.replace(/^Lazy/, '')
13+
const kebabName = c.kebabName.replace(/^lazy-/, '')
14+
return `- \`<${pascalName}>\` | \`<${kebabName}>\` (${c.shortPath})`
15+
})
16+
%><%= list.join('\n') %>

0 commit comments

Comments
 (0)