@date-fns/docs
v0.38.0
Published
date-fns documentation utilities & types
Downloads
461
Readme
date-fns documentation utilities & types
This library is used to load docs into the database and provide a schema for the website.
Usage
The package is integrated into the date-fns build and release scripts, but if you need to run it manually, use the following instructions:
- To generate the date-fns docs, start by installing the latest version:
npm i -D @date-fns/docs@latest
- Then generate TypeDoc JSON file (
tmp/docs.json
):
npx typedoc
- Then, upload the docs to the Firebase with the path to the service key:
env GOOGLE_APPLICATION_CREDENTIALS="secrets/$APP_ENV/key.json" npx date-fns-docs docs/config.js
Replace $APP_ENV
with either staging
or production
.
Contributing
When working locally, to upload the docs follow the instructions:
- In the date-fns library source directory generate TypeDoc JSON file (
tmp/docs.json
):
npx typedoc
- Rollback the docs for the current version for 1+n run to avoid having duplicates:
env GOOGLE_APPLICATION_CREDENTIALS="../date-fns/secrets/staging/key.json" npx tsx ./src/bin.ts ../date-fns/docs/config.js --rollback
- Then upload the docs to the Firebase:
env GOOGLE_APPLICATION_CREDENTIALS="../date-fns/secrets/staging/key.json" npx tsx ./src/bin.ts ../date-fns/docs/config.js