Files
Bendik Aagaard LynghaugandClaude Fable 5 9671670269
ci / test (24) (push) Successful in 35s
ci / test (26) (push) Successful in 31s
ci / e2e (push) Successful in 1m5s
release / publish (push) Successful in 35s
fix(ci): glob test files instead of passing directories to node --test
Node 24's test runner spawns directory arguments as entry modules
(MODULE_NOT_FOUND); Node 26 accepts them. Shell-expanded file globs work
on both — found by the first real CI run on the Gitea runner, where the
Node 24 matrix leg and the release gate failed while 26 passed.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014NgfSjHE11oFpoSnLVKLXd
2026-09-08 21:46:42 +02:00

30 lines
772 B
JSON

{
"name": "@uhhm/buuh-monorepo",
"private": true,
"version": "8.0.0",
"description": "Monorepo for buuh \u2014 a friendly fork of choo, rebuilt for the modern platform",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=24"
},
"scripts": {
"test": "node --test packages/*/test/*.test.js",
"test:e2e": "node --test test/e2e/*.test.js",
"bench": "node bench/render.js",
"bench:browser": "node bench/real-browser.js",
"size": "node scripts/size.js",
"bundle": "node scripts/bundle.js"
},
"repository": "https://project.uhhm.no/uhhm/buuh",
"license": "MIT",
"devDependencies": {
"happy-dom": "^20.14.0",
"nanohtml": "^1.10.0",
"playwright": "^1.63.0",
"uhtml": "^5.0.9"
}
}