-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.ts
More file actions
16 lines (16 loc) · 804 Bytes
/
api.ts
File metadata and controls
16 lines (16 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export { DEFAULT_LOCK_FILENAME } from "#cache/lock";
export { applyTargetDir } from "#cache/targets";
export { parseArgs } from "#cli/parse-args";
export { cleanCache } from "#commands/clean";
export { cleanGitCache } from "#commands/clean-git-cache";
export { initConfig } from "#commands/init";
export { pinSources } from "#commands/pin";
export { pruneCache } from "#commands/prune";
export { removeSources } from "#commands/remove";
export { printSyncPlan, runSync } from "#commands/sync";
export { updateSources } from "#commands/update";
export { verifyCache } from "#commands/verify";
export { loadConfig } from "#config";
export { redactRepoUrl } from "#git/redact";
export { enforceHostAllowlist, parseLsRemote } from "#git/resolve-remote";
export { resolveRepoInput } from "#git/resolve-repo";