generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This pull request includes several changes to the documentation and build process, focusing on simplifying commands, updating documentation structure, and improving code consistency. ### Build process improvements: * [`.github/workflows/ci.yml`](diffhunk://#diff-b803fcb7f17ed9235f1e5cb1fcd2f5d3b2838429d4368ae4c57ce4436577f03fL180-R181): Simplified the build steps by replacing `pnpm build` with `just build-docs` for building the website. * [`Justfile`](diffhunk://#diff-2f90408c2b0302b1cdb7f5d634114750837f940fa82d13057d9c18d0170a7e5cL239-R239): Updated `pnpm-install` command to use `pnpm-workspace.yaml` for better dependency management and added a new `build-docs` command. [[1]](diffhunk://#diff-2f90408c2b0302b1cdb7f5d634114750837f940fa82d13057d9c18d0170a7e5cL239-R239) [[2]](diffhunk://#diff-2f90408c2b0302b1cdb7f5d634114750837f940fa82d13057d9c18d0170a7e5cR318-R321) ### Documentation structure updates: * [`docs/docs/getting-started/introduction.md`](diffhunk://#diff-f849d4575ef32f8f18b0e60379feb3cc4d11b58a0b4a7a2c9b0cf1cbffb123c7L1-L9): Removed the introduction page to streamline the documentation. * [`docs/docs/getting-started/quick-start.md`](diffhunk://#diff-e867e9aaaf0dba6bd41e78aa9e911594f6b6de998395d7c98b500c158b10d547L2-R2): Promoted the Quick Start guide to the first position in the sidebar and updated installation instructions for clarity. [[1]](diffhunk://#diff-e867e9aaaf0dba6bd41e78aa9e911594f6b6de998395d7c98b500c158b10d547L2-R2) [[2]](diffhunk://#diff-e867e9aaaf0dba6bd41e78aa9e911594f6b6de998395d7c98b500c158b10d547L15-R28) [[3]](diffhunk://#diff-e867e9aaaf0dba6bd41e78aa9e911594f6b6de998395d7c98b500c158b10d547L43-R43) * [`docs/docusaurus.config.ts`](diffhunk://#diff-9dbe126a5a498e56dcf30f25d7fc163f8443517db03458905d3d33303e1cdbf9L117-R118): Updated the navigation link to point to the Quick Start guide instead of the removed introduction page. ### Code consistency improvements: * [`docs/sidebars.ts`](diffhunk://#diff-6e908f6e4016ad389cfb93ce7a47df677247c0f9d17c3589710592e8cf9527e0L1-R1): Refactored sidebar configuration to use autogenerated sections for better maintainability. [[1]](diffhunk://#diff-6e908f6e4016ad389cfb93ce7a47df677247c0f9d17c3589710592e8cf9527e0L1-R1) [[2]](diffhunk://#diff-6e908f6e4016ad389cfb93ce7a47df677247c0f9d17c3589710592e8cf9527e0L25-R28) [[3]](diffhunk://#diff-6e908f6e4016ad389cfb93ce7a47df677247c0f9d17c3589710592e8cf9527e0L37-R48) * [`docs/src/pages/index.tsx`](diffhunk://#diff-1ba1eb6028465b3f14984c99c34cb59fe12f7b2656a368200ba8bec7eb738946L1-R76): Applied consistent formatting and coding standards across the file. [[1]](diffhunk://#diff-1ba1eb6028465b3f14984c99c34cb59fe12f7b2656a368200ba8bec7eb738946L1-R76) [[2]](diffhunk://#diff-1ba1eb6028465b3f14984c99c34cb59fe12f7b2656a368200ba8bec7eb738946L83-R85)
- Loading branch information
1 parent
b6d05d9
commit 0037b8b
Showing
7 changed files
with
58 additions
and
69 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -177,10 +177,8 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: cashapp/[email protected] | ||
- name: Install dependencies | ||
run: just pnpm-install | ||
- name: Build website | ||
run: cd docs && pnpm build | ||
run: just build-docs | ||
gen-lsp: | ||
name: Generate LSP Help | ||
runs-on: ubuntu-latest | ||
|
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 was deleted.
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
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