Skip to content

Commit

Permalink
update nav bar
Browse files Browse the repository at this point in the history
  • Loading branch information
jchavarri committed May 22, 2024
1 parent c081890 commit 2418cea
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,9 @@ build-site: build-playground ## Builds the whole site (including playground)
.PHONY: build-blog
build-blog: ## Builds the blog
cd blog && yarn && yarn build

.PHONY: move-v4.0.0-tag
move-v4.0.0-tag: ## Moves the v4.0.0 tag to the latest commit, useful to publish the v4 docs
git push origin :refs/tags/v4.0.0
git tag -fa v4.0.0
git push origin --tags
6 changes: 5 additions & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default defineConfig({
{ text: "Playground", link: "/playground/", target: "_self" },
{ text: "Blog", link: "https://melange.re/blog" },
{
text: "unstable",
text: "v4.0.0",
items: [
{
text: "v3.0.0",
Expand All @@ -68,6 +68,10 @@ export default defineConfig({
text: "v1.0.0",
link: "https://melange.re/v1.0.0/",
},
{
text: "unstable",
link: "https://melange.re/unstable/",
},
],
},
],
Expand Down

0 comments on commit 2418cea

Please sign in to comment.