pi-crew 0.8.9 → 0.8.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -53,7 +53,10 @@ const HOT_MODULE_SPECIFIERS = [
|
|
|
53
53
|
"./live-session-runtime.ts",
|
|
54
54
|
"./task-runner.ts",
|
|
55
55
|
"../extension/team-tool.ts",
|
|
56
|
+
"../extension/team-tool/run.ts", // handleRun path — latched in team-tool.ts but its static graph (config-patch, validate-workflow) still cold-start-races under concurrent fanout
|
|
57
|
+
"../extension/team-tool/config-patch.ts", // effectiveRunConfig (crash variant observed in repro)
|
|
56
58
|
"../extension/validate-resources.ts",
|
|
59
|
+
"../workflows/validate-workflow.ts", // validateWorkflowForTeam (crash variant observed across sessions)
|
|
57
60
|
"../state/crew-init.ts", // TDZ-prone top-level consts (CREW_README); dynamically imported by team-tool/run.ts
|
|
58
61
|
] as const;
|
|
59
62
|
|