build: decouple typegen/docgen from yarn build:lib (#1038)

* chore(deps-dev): upgrade sveld to v0.13.1

* build: separate sveld into a separate build script

* docs(contributing): update guideline on re-building docs
This commit is contained in:
Eric Liu 2022-01-24 14:16:31 -08:00 committed by GitHub
commit e37b632fef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 77 additions and 76 deletions

20
scripts/build-docs.js Normal file
View file

@ -0,0 +1,20 @@
const { sveld } = require("sveld");
const pkg = require("../package.json");
sveld({
glob: true,
markdown: true,
markdownOptions: {
onAppend: (type, document, components) => {
if (type === "h1")
document.append(
"quote",
`${components.size} components exported from ${pkg.name}@${pkg.version}.`
);
},
},
json: true,
jsonOptions: {
outFile: "docs/src/COMPONENT_API.json",
},
});