Avoid using --ignore-workspace (#353)

This commit is contained in:
Mateusz Burzyński
2026-02-19 14:41:21 +00:00
committed by pullfrog[bot]
parent 4ecff49b72
commit 185ca7a832
9 changed files with 82 additions and 41 deletions
+38
View File
@@ -0,0 +1,38 @@
/**
* Internal entrypoint for the root app.
* Re-exports shared types, values, and utilities needed by the Next.js app.
*/
export type {
AgentApiKeyName,
AgentManifest,
AuthorPermission,
BashPermission,
Payload,
PayloadEvent,
PushPermission,
ToolPermission,
WriteablePayload,
} from "../external.ts";
export {
AgentName,
agentsManifest,
Effort,
ghPullfrogMcpName,
} from "../external.ts";
export type {
AgentInfo,
BuildPullfrogFooterParams,
WorkflowRunFooterInfo,
} from "../utils/buildPullfrogFooter.ts";
export {
buildPullfrogFooter,
PULLFROG_DIVIDER,
stripExistingFooter,
} from "../utils/buildPullfrogFooter.ts";
export {
isValidTimeString,
parseTimeString,
TIMEOUT_DISABLED,
} from "../utils/time.ts";