MCPcopy
hub / github.com/actionsflow/actionsflow / IBuildOptions

Interface IBuildOptions

packages/actionsflow/src/build.ts:29–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27import allSettled from "promise.allsettled";
28allSettled.shim(); // will be a no-op if not needed
29interface IBuildOptions {
30 dest?: string;
31 cwd?: string;
32 include?: string[];
33 exclude?: string[];
34 force?: boolean;
35 logLevel?: string;
36 verbose?: boolean;
37 jsonSecrets?: string;
38 jsonGithub?: string;
39}
40const build = async (options: IBuildOptions = {}): Promise<void> => {
41 preBuild();
42 options = {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected