You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updates to the site are normally built and published automatically, but manual local updates can be done via `scripts/update-docs.js`.
4
+
5
+
```bash
6
+
# These steps assume that MithrilJS/mithril.js is a git remote named "mithriljs"
7
+
8
+
# Ensure your next branch is up to date
9
+
$ git checkout next
10
+
$ git pull mithriljs next
11
+
12
+
# Manually ensure that no new feature docs were added
13
+
14
+
$ node scripts/update-docs
15
+
```
16
+
17
+
After the docs build completes, the updated docs should appear on https://mithril.js.org in a few minutes.
18
+
19
+
**Note:** When updating the stable version with a release candidate out, ***make sure to update the index + navigation to point to the new stable version!!!***
0 commit comments