2026-03-18 10:02:21 -07:00
|
|
|
export const optionalBundledClusters: string[];
|
|
|
|
|
export const optionalBundledClusterSet: Set<string>;
|
2026-03-18 18:19:12 +00:00
|
|
|
export const OPTIONAL_BUNDLED_BUILD_ENV: "OPENCLAW_INCLUDE_OPTIONAL_BUNDLED";
|
2026-03-18 10:02:21 -07:00
|
|
|
export function isOptionalBundledCluster(cluster: string): boolean;
|
|
|
|
|
export function shouldIncludeOptionalBundledClusters(env?: NodeJS.ProcessEnv): boolean;
|
2026-03-23 08:21:50 -07:00
|
|
|
export function hasReleasedBundledInstall(packageJson: unknown): boolean;
|
|
|
|
|
export function shouldBuildBundledCluster(
|
|
|
|
|
cluster: string,
|
|
|
|
|
env?: NodeJS.ProcessEnv,
|
|
|
|
|
options?: { packageJson?: unknown },
|
|
|
|
|
): boolean;
|