Missed the 3-place version rule on the v0.2.2 bump. MODULE_VERSION was still v0.2.0 in scripts/main.js, so Foundry's init log showed the old version and the live system didn't have getFeed/clearFeed. Caught during the e2e Playwright run when Foundry loaded v0.2.0 of the main.js but v0.2.2 of the module.json.
15 lines
552 B
JSON
15 lines
552 B
JSON
{
|
|
"name": "combat-hud-hub",
|
|
"version": "0.2.2",
|
|
"description": "Foundry VTT v14 module: generic combat HUD host. Other modules register sections via the public API; built-in core sections render round/turn/damage/dice-streak. Soft-dep on foundry-hooks-lib and battle-focus.",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "node tests/verify-combat-hud-hub.mjs",
|
|
"test:foundry": "node tests/verify-combat-hud-hub-foundry.mjs"
|
|
},
|
|
"author": "Kaysser Taylor",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"playwright-core": "^1.40.0"
|
|
}
|
|
} |