Initial commit

This commit is contained in:
Samraaj Bath
2026-06-29 15:11:48 -07:00
commit 66dfdcc58d
404 changed files with 45970 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
/**
* @cloner/core — the only package that imports the deterministic compiler.
* The api / worker / mcp layers depend on this, never on compiler internals.
*/
export { runCloneJob, verifyCloneJobResult } from "./runCloneJob.js";
export { collectFileMap, fileMapStats } from "./collectFileMap.js";
export { cacheKey, normalizeUrl, canonicalOptions } from "./cacheKey.js";
export {
normalizeCloneRequestOptions,
resolveCloneMode,
resolveCloneOptions,
resolveCloneStyling,
} from "./options.js";
export { COMPILER_VERSION } from "clone-static";
export type {
CloneMode,
CloneOptions,
CloneStyling,
CollectedFile,
FileMap,
CaptureSanity,
CloneTimings,
RouteInfo,
CloneJobResult,
RunCloneJobInput,
} from "./types.js";