The artifacts/ directory matched a repo-wide ignore rule and was left out of the UI card commit; its suites only passed locally because the files existed on disk. Force-track the complete card so the source push carries every module the tests import. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01BvMSXH8VH2tMWXanb8SJdf
15 lines
418 B
TypeScript
15 lines
418 B
TypeScript
export { ArtifactWorkspace } from "./ArtifactWorkspace.tsx";
|
|
export { createArtifactEndpointContract } from "./endpoints.ts";
|
|
export {
|
|
ARTIFACTS_FLAG,
|
|
FOUNDATION_FLAG,
|
|
PROJECTS_FLAG,
|
|
artifactsEnabled,
|
|
normalizeArtifact,
|
|
normalizeArtifactWorkspace,
|
|
normalizePreview,
|
|
preservesImmutableHistory,
|
|
} from "./model.ts";
|
|
export { ArtifactContractError } from "./security.ts";
|
|
export type * from "./types.ts";
|