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.
26 lines
729 B
26 lines
729 B
#!/usr/bin/env bash
|
|
|
|
if [ "$1" != "build" -a "$1" != "start" ];then
|
|
echo "usage: npm run docs (build|start)" >&2
|
|
exit 1
|
|
fi
|
|
|
|
set -o errexit
|
|
|
|
if [ ! -d openzeppelin-docs ]; then
|
|
git clone https://github.com/frangio/openzeppelin-docs.git openzeppelin-docs
|
|
fi
|
|
|
|
git -C openzeppelin-docs pull -q
|
|
|
|
if [ "$1" = "build" ]; then
|
|
npm run prepare-docs
|
|
cd docs
|
|
env DISABLE_PREPARE_DOCS= node ../openzeppelin-docs/build-local.js
|
|
|
|
elif [ "$1" = "start" ]; then
|
|
npx concurrently \
|
|
'nodemon --delay 1 -e "*" -w contracts -w "docs/*.hbs" -x npm run prepare-docs' \
|
|
'cd docs; env DISABLE_PREPARE_DOCS= nodemon --delay 1 -e adoc,yml ../openzeppelin-docs/build-local.js' \
|
|
'http-server -c-1 openzeppelin-docs/build/site'
|
|
fi
|
|
|