-
Notifications
You must be signed in to change notification settings - Fork 64
refactor: align with docusaurus version structure #476
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
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
b93d565
to
bc26ded
Compare
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.
assuming everything else is just file moves
docusaurus.config.js
Outdated
label: "stable", | ||
banner: "none", | ||
badge: false, | ||
path: "old", |
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.
label: "stable", | |
banner: "none", | |
badge: false, | |
path: "old", | |
label: "old", | |
banner: "unmaintained", | |
badge: false, | |
path: "old", |
docusaurus.config.js
Outdated
}, | ||
"2.0": { | ||
"1.0": { |
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.
might be worth renaming this "old" just to match - doesn't have to be a number string afaik
versions.json
Outdated
@@ -1,3 +1,3 @@ | |||
[ | |||
"2.0" | |||
"1.0" |
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.
if renaming to old need to update this to "old" too
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 posterity might be worth listing the move part in the pr description - not a huge deal if lots of moves
docs/ -> versioned-docs/old
versioned-docs/2.0 -> docs/
etc
updated! |
Moves our docs to meet docusaurus standards. - Current docs moved from `versioned-docs/version-2.0` to the `docs/` folder - Old docs go under `versioned-docs/version-old` Doing this so that we can actually conform to docusaurus standards, and therefore use their instructions on how to do things (like SEO optimization for new docs vs old docs). ## NOTES FOR REVIEW I didn't make many changes here except for: 1. moving old doc files to the `version-1.0` 2. Updating our langsmith cookbooks script we use to generate cookbooks in the navbar
Moves our docs to meet docusaurus standards.
versioned-docs/version-2.0
to thedocs/
folderversioned-docs/version-old
Doing this so that we can actually conform to docusaurus standards, and therefore use their instructions on how to do things (like SEO optimization for new docs vs old docs).
NOTES FOR REVIEW
I didn't make many changes here except for:
version-1.0