Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
node-version: [24.x]
env:
GIT_USER: github-actions[bot]
GIT_PASS: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -23,18 +23,17 @@ jobs:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: oven-sh/setup-bun@v2
- name: SETUP_NODE_${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: BEFORE_SCRIPT
run: |
# Configure git identity globally so commits in temp gh-pages clone succeed
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: INSTALL_PACKAGES
run: pnpm install --frozen-lockfile
run: bun install --frozen-lockfile
- name: DEPLOY
run: pnpm --filter "@gracefullight/docusaurus-plugin-docs" run deploy
run: bun run --filter "@gracefullight/docusaurus-plugin-docs" deploy
2 changes: 1 addition & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pnpm commitlint --edit $1
bun run commitlint --edit $1
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pnpm lint-staged --config lint-staged.config.mjs
bun run lint-staged --config lint-staged.config.mjs
2 changes: 1 addition & 1 deletion .husky/prepare-commit-msg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pnpm devmoji -e
bun run devmoji -e
14 changes: 7 additions & 7 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
- .changeset: Versioning and release metadata.

## Build, Test, and Development Commands
- `pnpm build`: Build all packages via Turbo (`dist/**`).
- `pnpm dev`: Watch builds across packages.
- `pnpm --filter <pkg> build`: Build a single package (e.g., `@gracefullight/docusaurus-plugin-sentry`).
- `pnpm format`: Format code with Biome.
- `pnpm lint`: Lint and auto-fix with Biome.
- `pnpm publish-packages`: Build + version + publish with Changesets.
- Requirements: Node `22`, pnpm `10`.
- `bun run build`: Build all packages via Turbo (`dist/**`).
- `bun run dev`: Watch builds across packages.
- `bun run --filter <pkg> build`: Build a single package (e.g., `@gracefullight/docusaurus-plugin-sentry`).
- `bun run format`: Format code with Biome.
- `bun run lint`: Lint and auto-fix with Biome.
- `bun run publish-packages`: Build + version + publish with Changesets.
- Requirements: Node `24`, bun `1`.

## Coding Style & Naming Conventions
- Indentation: 2 spaces; line width 80; LF endings; JS quotes: double (Biome enforced).
Expand Down
4,278 changes: 4,278 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[tools]
node = "24"
bun = "1"
11 changes: 8 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,16 @@
"turbo": "^2.5.8"
},
"engines": {
"node": "22",
"pnpm": "10"
"node": "24",
"bun": "1"
},
"name": "@gracefullight/docusaurus-plugins",
"packageManager": "pnpm@10.19.0",
"packageManager": "bun@1.2.14",
"workspaces": [
"packages/*",
"apps/**",
"!**/test/**"
],
"private": true,
"repository": "https://github.com/gracefullight/docusaurus-plugins",
"scripts": {
Expand Down
Loading