tiptap/docs/gridsome.server.js

90 lines
2.2 KiB
JavaScript
Raw Normal View History

2019-12-08 04:02:22 +08:00
const path = require('path')
2019-12-08 05:23:49 +08:00
const globby = require('globby')
2020-08-18 01:08:32 +08:00
const TypeDoc = require('typedoc')
2019-12-08 04:02:22 +08:00
2020-08-18 15:36:26 +08:00
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({
2020-08-19 03:04:17 +08:00
mode: 'file',
2020-08-18 15:36:26 +08:00
ignoreCompilerErrors: true,
experimentalDecorators: true,
excludeExternals: true,
excludeNotExported: true,
excludeProtected: true,
excludePrivate: true,
// excludeNotDocumented: true,
exclude: [
"**/*.test.ts",
"**/__tests__/*",
"**/__mocks__/*"
],
})
2020-08-18 01:08:32 +08:00
2020-08-18 15:36:26 +08:00
const project = app.convert(app.expandInputFiles([`../packages/${name}`]))
2020-08-18 01:08:32 +08:00
2020-08-18 15:36:26 +08:00
if (project) {
// app.generateDocs(project, `api/${name}`)
// app.generateJson(project, `api/${name}.json`)
const json = app.serializer.projectToObject(project)
return json
}
2020-08-18 01:08:32 +08:00
2020-08-18 15:36:26 +08:00
return null
})
.filter(package => !!package)
module.exports = function (api) {
2020-08-18 01:08:32 +08:00
2020-08-18 15:36:26 +08:00
api.loadSource(({ addCollection }) => {
const appCollection = addCollection({ typeName: 'Package' })
2020-08-18 01:08:32 +08:00
2020-08-18 15:36:26 +08:00
packages.forEach(package => {
appCollection.addNode(package)
})
})
api.createPages(({ createPage }) => {
packages.forEach(package => {
createPage({
path: `/api/${package.name}`,
component: './src/templates/ApiPage/index.vue',
context: {
package,
},
})
})
})
2020-08-18 01:08:32 +08:00
2019-12-08 04:02:22 +08:00
api.chainWebpack(config => {
config.resolve.extensions
.add('.ts')
2020-04-29 05:25:56 +08:00
.add('.jsx')
2019-12-08 07:16:44 +08:00
config.module
.rule('typescript')
.test(/\.tsx?$/)
.use()
.loader('ts-loader')
2020-04-17 01:13:21 +08:00
.options({ appendTsSuffixTo: [/\.vue$/] })
config.module
.rule('jsx')
.test(/\.jsx?$/)
.use()
.loader('babel-loader')
2020-04-22 04:11:57 +08:00
globby.sync('../packages/*', { onlyDirectories: true })
.map(name => name.replace('../packages/', ''))
2019-12-08 05:23:49 +08:00
.forEach(name => {
config.resolve.alias
2020-04-22 04:11:57 +08:00
.set(`@tiptap/${name}`, path.resolve(`../packages/${name}`))
2019-12-08 05:23:49 +08:00
})
2019-12-08 04:02:22 +08:00
})
}