import all packages for live demo
This commit is contained in:
@@ -1,65 +1,89 @@
|
||||
const path = require('path')
|
||||
const globby = require('globby')
|
||||
const TypeDoc = require('typedoc')
|
||||
// const TypeDoc = require('typedoc')
|
||||
|
||||
const packages = globby.sync('../packages/*', { onlyDirectories: true })
|
||||
.map(name => name.replace('../packages/', ''))
|
||||
.filter(name => name.startsWith('core'))
|
||||
.map(name => {
|
||||
const app = new TypeDoc.Application()
|
||||
// const packages = globby.sync('../packages/*', { onlyDirectories: true })
|
||||
// .map(name => name.replace('../packages/', ''))
|
||||
// .filter(name => name.startsWith('core'))
|
||||
// .map(name => {
|
||||
// const app = new TypeDoc.Application()
|
||||
|
||||
app.options.addReader(new TypeDoc.TSConfigReader())
|
||||
app.options.addReader(new TypeDoc.TypeDocReader())
|
||||
app.bootstrap({
|
||||
mode: 'file',
|
||||
ignoreCompilerErrors: true,
|
||||
experimentalDecorators: true,
|
||||
excludeExternals: true,
|
||||
excludeNotExported: true,
|
||||
excludeProtected: true,
|
||||
excludePrivate: true,
|
||||
// excludeNotDocumented: true,
|
||||
exclude: [
|
||||
'**/*.test.ts',
|
||||
'**/__tests__/*',
|
||||
'**/__mocks__/*',
|
||||
],
|
||||
})
|
||||
// app.options.addReader(new TypeDoc.TSConfigReader())
|
||||
// app.options.addReader(new TypeDoc.TypeDocReader())
|
||||
// app.bootstrap({
|
||||
// mode: 'file',
|
||||
// ignoreCompilerErrors: true,
|
||||
// experimentalDecorators: true,
|
||||
// excludeExternals: true,
|
||||
// excludeNotExported: true,
|
||||
// excludeProtected: true,
|
||||
// excludePrivate: true,
|
||||
// // excludeNotDocumented: true,
|
||||
// exclude: [
|
||||
// '**/*.test.ts',
|
||||
// '**/__tests__/*',
|
||||
// '**/__mocks__/*',
|
||||
// ],
|
||||
// })
|
||||
|
||||
const project = app.convert(app.expandInputFiles([`../packages/${name}`]))
|
||||
// const project = app.convert(app.expandInputFiles([`../packages/${name}`]))
|
||||
|
||||
if (project) {
|
||||
// app.generateDocs(project, `api/${name}`)
|
||||
// app.generateJson(project, `api/${name}.json`)
|
||||
const json = app.serializer.projectToObject(project)
|
||||
return json
|
||||
}
|
||||
// if (project) {
|
||||
// // app.generateDocs(project, `api/${name}`)
|
||||
// // app.generateJson(project, `api/${name}.json`)
|
||||
// const json = app.serializer.projectToObject(project)
|
||||
// return json
|
||||
// }
|
||||
|
||||
return null
|
||||
})
|
||||
.filter(package => !!package)
|
||||
// return null
|
||||
// })
|
||||
// .filter(package => !!package)
|
||||
|
||||
// const packages = globby.sync('../packages/*', { onlyDirectories: true })
|
||||
// .map(name => name.replace('../packages/', ''))
|
||||
// .map(name => {
|
||||
// // config.resolve.alias
|
||||
// // .set(`@tiptap/${name}`, path.resolve(`../packages/${name}/index.ts`))
|
||||
// return {
|
||||
// name: `@tiptap/${name}`,
|
||||
// module: require(`../packages/${name}/index.ts`),
|
||||
// }
|
||||
// })
|
||||
|
||||
module.exports = function (api) {
|
||||
|
||||
api.loadSource(({ addCollection }) => {
|
||||
const appCollection = addCollection({ typeName: 'Package' })
|
||||
|
||||
packages.forEach(package => {
|
||||
appCollection.addNode(package)
|
||||
})
|
||||
// packages.forEach(package => {
|
||||
// appCollection.addNode(package)
|
||||
// })
|
||||
|
||||
globby.sync('../packages/*', { onlyDirectories: true })
|
||||
.map(name => name.replace('../packages/', ''))
|
||||
.forEach(name => {
|
||||
appCollection.addNode({ name })
|
||||
// config.resolve.alias
|
||||
// .set(`@tiptap/${name}`, path.resolve(`../packages/${name}/index.ts`))
|
||||
// appCollection.addNode({
|
||||
// name: `@tiptap/${name}`,
|
||||
// module: require(`../packages/${name}/index.ts`),
|
||||
// })
|
||||
})
|
||||
|
||||
})
|
||||
|
||||
api.createPages(({ createPage }) => {
|
||||
packages.forEach(package => {
|
||||
createPage({
|
||||
path: `/api/${package.name}`,
|
||||
component: './src/templates/ApiPage/index.vue',
|
||||
context: {
|
||||
package,
|
||||
},
|
||||
})
|
||||
})
|
||||
})
|
||||
// api.createPages(({ createPage }) => {
|
||||
// packages.forEach(package => {
|
||||
// createPage({
|
||||
// path: `/api/${package.name}`,
|
||||
// component: './src/templates/ApiPage/index.vue',
|
||||
// context: {
|
||||
// package,
|
||||
// },
|
||||
// })
|
||||
// })
|
||||
// })
|
||||
|
||||
api.chainWebpack(config => {
|
||||
config.resolve.extensions
|
||||
|
||||
Reference in New Issue
Block a user