-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(vitepress): updates site to use vitepress #971
Merged
Merged
Changes from 28 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
9b64660
feat: vuepress -> vitepress
0xpatrickdev dbc3632
feat(styles): default vitepress theme
0xpatrickdev 37ac6cb
feat(vitepress): snippets path resolution
0xpatrickdev 9844392
feat(vitepress): rename README.md -> index.md
0xpatrickdev 6e1000a
feat(vitepress): update sidebar key names
0xpatrickdev bedd10a
refactor(vitepress): sidebar use text and link objects instead of pat…
0xpatrickdev 8deb74f
refactor(vitepress): set sidebar collapsed true
0xpatrickdev badf655
refactor(vitepress): register components
0xpatrickdev 41fdeeb
refactor(vitepress): agoric brand theme
0xpatrickdev f748428
fix: index.md has extra double quote
0xpatrickdev c588227
feat(vitepress): add docs:preview script
0xpatrickdev d2cabba
refactor(vitepress): move public to srcDir (main)
0xpatrickdev 388fe30
refactor: light/dark mode friendly logo
0xpatrickdev f5f9406
refactor(vitepress): support existing stylus styles
0xpatrickdev d808549
refactor(vitepress): route redirects (wip)
0xpatrickdev e06b4f8
feat(vitepress): enable minisearch
0xpatrickdev 0be2346
refactor(vitepress): themeConfig.zoeVersion in Zoe-Version.vue undefined
0xpatrickdev 135131d
fix(vitepress): ci jobs
0xpatrickdev 5eb809a
chore(vitepress): update docs
0xpatrickdev c1ee29f
refactor(vitepress): ensure all links are active
0xpatrickdev 6f4c403
refactor(vitepress): lastUpdatedAt configuration
0xpatrickdev e963c1f
feat: add sitemap
0xpatrickdev c283f04
refactor: remove extraneous .html extension
0xpatrickdev f7a6c5a
refactor: drop extraneous .md
0xpatrickdev d33e24f
chore: remove old markdown link check config
0xpatrickdev 2760d58
refactor(nav): wallet-api hierachy
0xpatrickdev 062a025
refactor(home): preserve existing styles
0xpatrickdev 9a30651
fix(redirects): github links 404
0xpatrickdev 6320811
docs: update CONTRIBUTING.md
0xpatrickdev 6ad99d9
Merge branch 'main' into pc/vitepress
0xpatrickdev 5594baa
chore(ci): set outDir to /dist in project root
0xpatrickdev 37b292d
docs: internal links should not include .md file extensions
0xpatrickdev 4a6158c
Merge branch 'main' into pc/vitepress
0xpatrickdev 5983738
fix: remove custom scroll restoration logic
0xpatrickdev 5358d21
fix: mobile styles
0xpatrickdev c69ed8a
fix(vitepress): restore existing redirects logic
0xpatrickdev df40be4
fixup! fix(vitepress): restore existing redirects logic
0xpatrickdev b1eed18
refactor(redirects): alphabetize and remove duplicates
0xpatrickdev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ dist/ | |
.DS_Store | ||
_agstate | ||
mlc-config.json | ||
main/.vitepress/cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<script setup> | ||
import { useData } from 'vitepress' | ||
const { theme } = useData() | ||
const { zoeVersion, zoeDocsUpdated } = theme.value | ||
</script> | ||
|
||
<template> | ||
<div class="zoe-version"> | ||
Zoe {{ zoeVersion }}. Last updated | ||
{{ zoeDocsUpdated }}. | ||
</div> | ||
</template> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the future, do we we get value out of this? It's hardcoded to
August 25, 2022
. VuePress had alastUpdatedAt
plugin for individual.md
's that is also available in VitePress (and active on our site)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's supposed to indicate when the zoe code was last updated. It might be nice to say what version of code we're documenting.
But yeah... currently, this is just noise.