As GitHub's open API has limitation with non-authentication request. It's recommended to add token to request header. Add a file to {projectRoot}/build-resource/token.ts
and content of
export const GITHUB_TOKEN = `${YOUR_GITHUB_TOKEN}`
yarn run build-doc:download-and-parse
The documentation relevent config is in ./src/build-resource/constant.ts
. It contains the documentation's configuration.
Press F5 to run extension in debug mode.
build-doc:download-and-parse
: Download Markdown files and parse them to JSON which will be shown.build-doc:parse
: Parse Markdowned files undersrc/resource/*.md
to JSON without re-download.build-dev
: Will be runned as pre-task when debugging.build-prod
: Build a optimized version of dist.compile-test
: Compile test files.test
: Run unit test cases.