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
30 lines
772 B
JSON
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"
|
|
}
|
|
}
|