Skip to content

Commit ba16b90

Browse files
committed
Fix up a whole bunch of stuff.
1 parent 0cf0910 commit ba16b90

File tree

3 files changed

+24
-17
lines changed

3 files changed

+24
-17
lines changed

bun.lock

Lines changed: 17 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,17 @@
1515
},
1616
"devDependencies": {
1717
"@biomejs/biome": "^v2.3.2",
18-
"@cubing/dev-config": "v0.3.6",
18+
"@cubing/dev-config": ">=0.9.2",
1919
"@lgarron-bin/repo": ">=0.13.18",
20+
"@optique/core": "^0.8.1",
21+
"@optique/run": "^0.8.1",
2022
"@types/bun": "^1.3.4",
21-
"@types/node": "^24.10.1",
23+
"@types/node": ">=24.10.1",
2224
"barely-a-dev-server": "^0.8.1",
2325
"bun-dx": "^0.1.3",
2426
"esbuild": "^0.25.11",
25-
"path-class": ">=0.10.13",
26-
"printable-shell-command": "^2.7.4",
27+
"path-class": ">=0.13.1",
28+
"printable-shell-command": "^5.1.0",
2729
"typescript": "^5.9.3"
2830
}
2931
}

script/check-engine-versions.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@
66
import { platform } from "node:os";
77
import { exit } from "node:process";
88
import { $, semver } from "bun";
9-
// @ts-expect-error: Recent syntax only used in a script.
109
import { engines } from "../package.json" with { type: "json" };
1110

1211
let exitCode = 0;
1312

1413
async function checkEngine(
15-
engineID: "bun" | "node",
14+
engineID: keyof typeof engines,
1615
versionCommand: $.ShellPromise,
1716
options?: { trimPrefix?: string; skipForOS?: Set<string> },
1817
) {

0 commit comments

Comments
 (0)