mirror of
https://github.com/zhigang1992/tipsi-stripe.git
synced 2026-06-11 08:49:30 +08:00
11 lines
185 B
Bash
Executable File
11 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Build fresh docs
|
|
npm run build --prefix website/docs
|
|
|
|
# Remove existing docs
|
|
rm -rf ./docs
|
|
|
|
# Move fresh docs into /docs folder
|
|
mv website/docs/build/tipsi-stripe ./docs
|