forked from anomalyco/opencode
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmise.toml
More file actions
15 lines (15 loc) · 819 Bytes
/
Copy pathmise.toml
File metadata and controls
15 lines (15 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# FORK-ONLY FILE — not present upstream, so it never conflicts on rebase.
#
# Pins the toolchain this repo requires. `bun` must match `packageManager` in package.json:
# packages/script/src/index.ts validates the running bun version against it and throws on mismatch,
# so bumping one without the other breaks every build script.
[tools]
bun = "1.3.14"
# Releases are triggered with `gh workflow run release-fork.yml`, and the workflow's own steps shell out
# to gh inside the runner (where it is preinstalled). Pinned here so triggering a release does not
# depend on whatever gh happens to be on PATH.
gh = "latest"
# The web UI submodule (./web) is a pnpm workspace on Node >= 24; `pnpm` must match its own
# `packageManager` field (web/package.json) the same way bun must match ours.
node = "24"
pnpm = "11.24.0"