mirror of openzeppelin-contracts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openzeppelin-contracts/scripts/prepare-docs.sh

16 lines
234 B

3 years ago
#!/usr/bin/env bash
set -o errexit
2 years ago
OUTDIR="$(node -p 'require("./docs/config.js").outputDir')"
3 years ago
if [ ! -d node_modules ]; then
npm ci
fi
rm -rf "$OUTDIR"
2 years ago
hardhat docgen
3 years ago
3 years ago
node scripts/gen-nav.js "$OUTDIR" > "$OUTDIR/../nav.adoc"