We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 312bf3e commit 8ba2f9cCopy full SHA for 8ba2f9c
justfile
@@ -60,7 +60,7 @@ watch:
60
)
61
62
clean:
63
- cd "{{root_dir}}" && rm -rf build && mkdir -p build && \
+ cd "{{root_dir}}" && rm -rf build && mkdir -p build
64
65
# Present the presentation.
66
present:
tools/prepare-gh-pages.sh
@@ -0,0 +1,12 @@
1
+#!/usr/bin/env bash
2
+# shellcheck disable=SC1090,SC1091
3
+set -e
4
+set -u
5
+
6
+ROOT_DIR=$(git rev-parse --show-toplevel)
7
8
+cd "$ROOT_DIR"
9
+just init
10
+rm -rf build/node_modules
11
+rm -rf docs/
12
+mv build docs
0 commit comments