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
8 changes: 4 additions & 4 deletions .github/workflows/autofix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version-file: '.tool-versions'
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
with:
bun-version-file: '.tool-versions'
- run: bun install --frozen-lockfile
- run: bun run format:fix
cache: true
run_install: true
- run: pnpm run format:fix
- name: Apply fixes
uses: autofix-ci/action@c5b2d67aa2274e7b5a18224e8171550871fc7e4a # v1
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version-file: '.tool-versions'
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
with:
bun-version-file: '.tool-versions'
- run: bun install --frozen-lockfile
- run: bun run format
- run: bun run build
cache: true
run_install: true
- run: pnpm run format
- run: pnpm run build
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ cache

node_modules
yarn-error.log
pnpm-lock.yaml
yarn.lock
package-lock.json
deno.lock
bun.lockb

# Windows
Thumbs.db
Expand Down
1 change: 0 additions & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
nodejs 24.7.0
bun 1.2.21
759 changes: 0 additions & 759 deletions bun.lock

This file was deleted.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"scripts": {
"dev": "vitepress dev",
"prebuild": "bun ./scripts/build-llm-docs.ts",
"prebuild": "node ./scripts/build-llm-docs.ts",
Comment thread
BlankParticle marked this conversation as resolved.
"build": "vitepress build",
"prepreview": "vitepress build",
"preview": "wrangler dev",
Expand All @@ -25,5 +25,6 @@
"vitepress-plugin-group-icons": "^1.0.4",
"vue": "^3.3.4",
"wrangler": "^4.72.0"
}
},
"packageManager": "pnpm@11.9.0"
}
Loading
Loading