Skip to content

feat: in-flight docs v2 work #986

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

Merged
merged 55 commits into from
Jun 2, 2025
Merged
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
e610572
update api references
ryanwaits Apr 30, 2025
20784eb
rename utils -> lib
ryanwaits Apr 30, 2025
885177f
update ui components
ryanwaits Apr 30, 2025
bdf8e3c
update components
ryanwaits Apr 30, 2025
3003db1
update app configs and markdown component loading
ryanwaits Apr 30, 2025
1ce2357
update and reorg content
ryanwaits Apr 30, 2025
ae3083e
remove unused files
ryanwaits Apr 30, 2025
6f12db7
update config files
ryanwaits Apr 30, 2025
3baca88
add shared content
ryanwaits Apr 30, 2025
067be5f
add types
ryanwaits Apr 30, 2025
7b06264
add fonts
ryanwaits Apr 30, 2025
734968d
add script for link checking
ryanwaits Apr 30, 2025
fde94f9
add new client page
ryanwaits Apr 30, 2025
e0e28c2
add readme
ryanwaits Apr 30, 2025
fdd596e
resolve merge conflict
ryanwaits Apr 30, 2025
71b837f
remove unnecessary logs
ryanwaits Apr 30, 2025
3ebb755
ignore .source
ryanwaits Apr 30, 2025
6dae6a8
stop tracking .source folder
ryanwaits Apr 30, 2025
53cea21
add eslint
ryanwaits Apr 30, 2025
59fab41
Merge branch 'develop' into feat/docs-v2
ryanwaits Apr 30, 2025
c6fd1f4
update lint rules
ryanwaits Apr 30, 2025
200a7ab
use turbopack and add overrides
ryanwaits Apr 30, 2025
8d4eb3b
cleanup unused vars
ryanwaits Apr 30, 2025
643226d
resolve merge conflict
ryanwaits May 6, 2025
32beec5
chore: remove part about clarity-lsp extension
tippenein May 7, 2025
133a9db
add mxs guide
ryanwaits May 5, 2025
70b80b0
add api key section
ryanwaits May 6, 2025
f1a43a8
update copy
ryanwaits May 6, 2025
f44524a
remove deprecated components and imports
ryanwaits May 29, 2025
147a1b1
set up new layout components
ryanwaits May 29, 2025
0831446
remove unused components
ryanwaits May 29, 2025
192c449
update cn helper and remove object notation
ryanwaits May 29, 2025
7f93625
fix object notation
ryanwaits May 29, 2025
6fd88ba
minor fumadocs upgrade
ryanwaits May 29, 2025
ddeadc0
update
ryanwaits May 29, 2025
3a5e50e
add script for fetching latest openapi specs
ryanwaits May 29, 2025
82ec265
fix: mxs settings docs
hugocaillard May 12, 2025
bbac5c6
feat: anatomy of a stacks project doc
hugocaillard May 12, 2025
caecaae
minor ui and copy edits
ryanwaits May 13, 2025
1c1d433
add content and images for migrating legacy projects
ryanwaits May 12, 2025
99bc9bb
update images
ryanwaits May 13, 2025
801025e
update some copy
ryanwaits May 13, 2025
3ce9e77
remove top header
ryanwaits May 13, 2025
4f21309
fix build
ryanwaits Jun 1, 2025
79b7edf
nav and component updates
ryanwaits Jun 1, 2025
fdbaa9e
include platform api spec
ryanwaits Jun 1, 2025
b5e15d3
move guides
ryanwaits Jun 1, 2025
58ae35f
adjust card styling and layouts
ryanwaits Jun 1, 2025
f2943d4
update page tree
ryanwaits Jun 2, 2025
a4fea4a
move file structure
ryanwaits Jun 2, 2025
c412df3
filter sidebar navigation to new layout
ryanwaits Jun 2, 2025
71a0f09
move files
ryanwaits Jun 2, 2025
d52744d
add folder component
ryanwaits Jun 2, 2025
9bde6b8
update nav to be fully config driven
ryanwaits Jun 2, 2025
c590441
resolve merge conflict
ryanwaits Jun 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
7 changes: 6 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
{
"extends": ["next/core-web-vitals", "next/typescript"],
"rules": {
"@typescript-eslint/no-explicit-any": "off"
"@typescript-eslint/no-explicit-any": "off",
"react-hooks/rules-of-hooks": "off",
"@next/next/no-img-element": "off",
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/no-unused-vars": "off",
"react-hooks/exhaustive-deps": "off"
}
}
16 changes: 0 additions & 16 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

42 changes: 0 additions & 42 deletions .github/mlc_config.json

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/board-automation.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/linkcheck-prs.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: linkcheck

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install --frozen-lockfile

- name: Run link validation
run: bun run lint
26 changes: 0 additions & 26 deletions .github/workflows/stylecheck-prs.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -8,4 +8,7 @@ openapi
.cache
.cursorrules
.next
tmp
.source/
tmp
.cursor/
/tasks
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Hiro Docs
Loading