mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
17 lines
222 B
Bash
Executable File
17 lines
222 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
./bin/build-contributors.sh
|
|
./bin/build-apidoc.sh
|
|
./bin/build-changelog.sh
|
|
|
|
cd docs
|
|
npm ci
|
|
npm run build
|
|
cp CNAME public/
|
|
|
|
if [ "$HEXO_ALGOLIA_INDEXING_KEY" != "" ]; then
|
|
npm run index
|
|
fi
|