d90e29ad05
1. threads.yaml race condition: reload threads index after agent subprocess completes before updating head pointer (cli-uwf/commands/thread.ts) 2. evaluateJsonata not awaited: jsonata evaluate() returns Promise for async expressions — now properly awaited (uwf-moderator/evaluate.ts) 3. resolveWorkflowHash dead code: function always returns a value, removed impossible null return type and dead null-check branches at call sites (cli-uwf/store.ts, commands/thread.ts, commands/workflow.ts)
27 lines
775 B
JSON
27 lines
775 B
JSON
{
|
|
"name": "@uncaged/workflow-monorepo",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*",
|
|
"../json-cas/packages/json-cas",
|
|
"../json-cas/packages/json-cas-fs"
|
|
],
|
|
"scripts": {
|
|
"build": "bunx tsc --build",
|
|
"check": "bunx tsc --build && biome check . && bash scripts/lint-log-tags.sh",
|
|
"typecheck": "bunx tsc --build",
|
|
"format": "biome format --write .",
|
|
"test": "bun run --filter '*' test",
|
|
"changeset": "bunx changeset",
|
|
"version": "bunx changeset version",
|
|
"release": "bun run build && bun test && npx changeset publish --no-git-tag"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.14",
|
|
"@changesets/cli": "^2.31.0",
|
|
"@types/node": "^25.7.0",
|
|
"@types/xxhashjs": "^0.2.4",
|
|
"bun-types": "^1.3.13"
|
|
}
|
|
}
|