bigint-crypto-utils/build/build.docs.js

27 lines
1016 B
JavaScript
Raw Normal View History

'use strict'
const fs = require('fs')
const jsdoc2md = require('jsdoc-to-markdown')
const path = require('path')
const pkgJson = require('../package.json')
const rootDir = path.join(__dirname, '..')
const template = path.join(rootDir, pkgJson.directories.src, 'doc', 'readme-template.md')
2020-04-07 22:21:02 +00:00
const input = path.join(rootDir, pkgJson.browser)
2020-04-07 17:13:23 +00:00
const source = fs.readFileSync(input, { encoding: 'UTF-8' }).replace(/([0-9]+)n([,\s\n)])/g, '$1$2')
const options = {
2020-04-07 17:13:23 +00:00
source, // we need to use this instead of files in order to avoid issues with esnext features
template: fs.readFileSync(template, { encoding: 'UTF-8' }),
2020-04-07 17:13:23 +00:00
'heading-depth': 3 // The initial heading depth. For example, with a value of 2 the top-level markdown headings look like "## The heading"
// 'global-index-format': 'none' // none, grouped, table, dl.
}
2020-04-07 17:13:23 +00:00
jsdoc2md.clear().then(() => {
const readmeContents = jsdoc2md.renderSync(options)
2020-04-07 17:13:23 +00:00
const readmeFile = path.join(rootDir, 'README.md')
fs.writeFileSync(readmeFile, readmeContents)
})