-
Notifications
You must be signed in to change notification settings - Fork 158
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: create workflow for generating previews and publishing docs using fern #1500
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
How to use the Graphite Merge QueueAdd the label graphite-merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. |
This comment was marked as duplicate.
This comment was marked as duplicate.
This comment was marked as duplicate.
This comment was marked as duplicate.
🌿 Documentation Preview
|
"import/extensions": ["off", "ignorePackages"] | ||
"rules": { | ||
"import/extensions": ["off", "ignorePackages"], | ||
"react/jsx-no-undef": "off" |
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.
Fern components are imported automatically. So this rule was incorrectly throwing errors everywhere
- name: Download Alchemy Docs Repo | ||
run: | | ||
rm -rf docs-site && \ | ||
curl -L -f -H "Authorization: token ${{ secrets.DOCS_GITHUB_TOKEN }}" \ |
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.
This is a classic GitHub Token I supplied to allow us to access the currently private docs repo. We should remove it once the docs are made public.
@@ -38,6 +38,7 @@ | |||
"build:esm": "tsc --project tsconfig.build.json --outDir ./dist/esm", | |||
"build:types": "tsc --project tsconfig.build.json --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap", | |||
"docs:gen": "node ../../doc-gen/dist/esm/cli.js generate --in ./src/index.ts --out ../../site/pages/reference/aa-sdk/core", | |||
"fern:gen": "node ../../fern-gen/dist/esm/cli.js generate --in ./src/index.ts --out ../../docs/pages/reference/aa-sdk/core", |
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.
Once we deprecate the vocs site I'd prefer we rename this docs:gen
.
<CardGroup cols={2}> | ||
<Card title="Quickstart" href="/react/quickstart" icon="forward"> | ||
Start building in minutes with UI components and powerful React hooks. | ||
</Card> | ||
<Card | ||
title="Try the Demo" | ||
href="https://demo.alchemy.com/" | ||
icon="bullseye-pointer" | ||
> | ||
Customize React components, export your config, and start building. | ||
</Card> | ||
</CardGroup> |
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.
These are Fern components
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.
This script will be used on docs repo as well
See this readme to understand how to make docs changes using this process.
This PR does a few things to integrate Account Kit into the new docs using Fern:
docs-gen
package and its command asfern-gen
which includes Fern-specific syntax.docs
which is essentially a copy ofsite
but only including files necessary for Fern (markdown, images, etc). All vocs-related files are removed.docs
directory ONLY includes one example markdown page for now. The rest will be migrated once the content freeze begins.docs.yml
file determines nav structure. It is injected into Fern's docs.yml in the preview and publish GitHub workflows.Pull Request Checklist
yarn test
)site
folder, and guidelines for updating/adding docs can be found in the contribution guide)feat!: breaking change
)yarn lint:check
) and fix any issues? (yarn lint:write
)PR-Codex overview
This PR primarily introduces updates to the documentation and configuration for the
Account Kit
project. It enhances the documentation structure, adds new icons, and integrates with theFern
CLI for generating documentation.Detailed summary
docs/images/
.DotsIcon
,ClockForwardIcon
,ExpoIcon
,SignerIcon
,ReactNativeIcon
,InfraIcon
, andSmartContractIcon
components.package.json
files for various packages to includefern:gen
commands.fern-gen
configuration files for TypeScript and documentation generation.README.md
andindex.mdx
with detailed instructions for documentation updates.