6 lines
171 B
Bash
Executable file
6 lines
171 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cd "$(dirname "$(realpath "${BASH_SOURCE[0]}")")"
|
|
yarn install
|
|
[[ -e docs ]] || ln -sf ../../docs docs
|
|
DEBUG='vitepress:*,vite:*' yarn run docs:build
|