2020-04-07 10:55:27 +00:00
|
|
|
'use strict'
|
|
|
|
|
|
|
|
const fs = require('fs')
|
2021-03-24 13:04:30 +00:00
|
|
|
const TypeDoc = require('typedoc')
|
2020-04-07 10:55:27 +00:00
|
|
|
const path = require('path')
|
|
|
|
const pkgJson = require('../package.json')
|
|
|
|
|
|
|
|
const rootDir = path.join(__dirname, '..')
|
|
|
|
|
2020-04-08 09:53:15 +00:00
|
|
|
function camelise (str) {
|
|
|
|
return str.replace(/-([a-z])/g,
|
|
|
|
function (m, w) {
|
|
|
|
return w.toUpperCase()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-03-24 13:04:30 +00:00
|
|
|
async function typedoc () {
|
|
|
|
const app = new TypeDoc.Application()
|
|
|
|
|
|
|
|
// If you want TypeDoc to load tsconfig.json / typedoc.json files
|
|
|
|
app.options.addReader(new TypeDoc.TSConfigReader())
|
|
|
|
app.options.addReader(new TypeDoc.TypeDocReader())
|
|
|
|
|
|
|
|
app.bootstrap({
|
|
|
|
// typedoc options here
|
|
|
|
entryPoints: ['src/index.ts'],
|
|
|
|
plugin: ['typedoc-plugin-markdown'],
|
|
|
|
includeVersion: true,
|
|
|
|
entryDocument: 'API.md',
|
|
|
|
readme: 'none'
|
|
|
|
})
|
|
|
|
|
|
|
|
const project = app.convert()
|
|
|
|
|
|
|
|
if (project) {
|
|
|
|
// Project may not have converted correctly
|
|
|
|
const output = path.join(rootDir, './docs')
|
|
|
|
|
|
|
|
// Rendered docs
|
|
|
|
await app.generateDocs(project, output)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-18 23:13:29 +00:00
|
|
|
function getRepositoryData () {
|
|
|
|
if (typeof pkgJson.repository === 'string') {
|
|
|
|
const repodata = pkgJson.repository.split(/[:/]/)
|
|
|
|
const repoProvider = repodata[0]
|
|
|
|
if (repoProvider === 'github' || repoProvider === 'gitlab' || repoProvider === 'bitbucket') {
|
|
|
|
return {
|
|
|
|
repoProvider,
|
|
|
|
repoUsername: repodata[1],
|
|
|
|
repoName: repodata[2]
|
|
|
|
}
|
|
|
|
} else return null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const { repoProvider, repoUsername, repoName } = getRepositoryData() || { repoProvider: null, repoUsername: null, repoName: null }
|
|
|
|
|
2021-03-24 13:04:30 +00:00
|
|
|
const regex = /^(?:(?<scope>@.*?)\/)?(?<name>.*)/ // We are going to take only the package name part if there is a scope, e.g. @my-org/package-name
|
|
|
|
const { name } = pkgJson.name.match(regex).groups
|
|
|
|
const camelCaseName = camelise(name)
|
|
|
|
|
|
|
|
let iifeBundle, esmBundle, umdBundle, workflowBadget, coverallsBadge
|
|
|
|
if (repoProvider) {
|
|
|
|
switch (repoProvider) {
|
|
|
|
case 'github':
|
|
|
|
iifeBundle = `[IIFE bundle](https://raw.githubusercontent.com/${repoUsername}/${repoName}/master/dist/bundles/${name}.iife.js)`
|
|
|
|
esmBundle = `[ESM bundle](https://raw.githubusercontent.com/${repoUsername}/${repoName}/master/dist/bundles/${name}.esm.js)`
|
|
|
|
umdBundle = `[UMD bundle](https://raw.githubusercontent.com/${repoUsername}/${repoName}/master/dist/bundles/${name}.umd.js)`
|
|
|
|
workflowBadget = `[![Node CI](https://github.com/${repoUsername}/${repoName}/workflows/Node%20CI/badge.svg)](https://github.com/${repoUsername}/${repoName}/actions?query=workflow%3A%22Node+CI%22)`
|
|
|
|
coverallsBadge = `[![Coverage Status](https://coveralls.io/repos/github/${repoUsername}/${repoName}/badge.svg?branch=master)](https://coveralls.io/github/${repoUsername}/${repoName}?branch=master)`
|
|
|
|
break
|
|
|
|
|
|
|
|
case 'gitlab':
|
|
|
|
iifeBundle = `[IIFE bundle](https://gitlab.com/${repoUsername}/${repoName}/-/raw/master/dist/bundles/${name}.iife.js?inline=false)`
|
|
|
|
esmBundle = `[ESM bundle](https://gitlab.com/${repoUsername}/${repoName}/-/raw/master/dist/bundles/${name}.esm.js?inline=false)`
|
|
|
|
umdBundle = `[IIFE bundle](https://gitlab.com/${repoUsername}/${repoName}/-/raw/master/dist/bundles/${name}.umd.js?inline=false)`
|
|
|
|
break
|
|
|
|
|
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
2020-04-18 23:13:29 +00:00
|
|
|
}
|
|
|
|
|
2021-03-24 13:04:30 +00:00
|
|
|
const templateFile = path.join(rootDir, pkgJson.directories.src, 'docs/index.md')
|
2020-04-18 23:13:29 +00:00
|
|
|
let template = fs.readFileSync(templateFile, { encoding: 'UTF-8' })
|
2020-04-08 09:53:15 +00:00
|
|
|
.replace(/\{\{PKG_NAME\}\}/g, pkgJson.name)
|
2021-03-24 13:04:30 +00:00
|
|
|
.replace(/\{\{PKG_CAMELCASE\}\}/g, camelCaseName)
|
2020-04-18 23:13:29 +00:00
|
|
|
.replace(/\{\{IIFE_BUNDLE\}\}/g, iifeBundle || 'IIFE bundle')
|
|
|
|
.replace(/\{\{ESM_BUNDLE\}\}/g, esmBundle || 'ESM bundle')
|
2021-03-24 13:04:30 +00:00
|
|
|
.replace(/\{\{UMD_BUNDLE\}\}/g, umdBundle || 'UMD bundle')
|
2020-04-18 23:13:29 +00:00
|
|
|
|
|
|
|
if (repoProvider && repoProvider === 'github') {
|
|
|
|
template = template.replace(/\{\{GITHUB_ACTIONS_BADGES\}\}/g, workflowBadget + '\n' + coverallsBadge)
|
|
|
|
}
|
2020-04-08 09:53:15 +00:00
|
|
|
|
2021-03-24 13:04:30 +00:00
|
|
|
const readmeFile = path.join(rootDir, 'README.md')
|
|
|
|
fs.writeFileSync(readmeFile, template)
|
2020-04-07 10:55:27 +00:00
|
|
|
|
2021-03-24 13:04:30 +00:00
|
|
|
typedoc()
|