/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { type Handler } from "./common.js"; /** * Filter function used in {@link getTscCommandDependencies} to determine whether * a dependency should be excluded from the list of possible build predecessors. * Returns `true` to ignore (exclude) the dependency, `false` to include it. * * `workspace:` references are never ignored (always a real local build dep). * Cross-group and unknown packages are always ignored. * For plain semver ranges in the same group the dep is included only when the * dep's current version satisfies the range. */ export declare function shouldIgnoreBuildDependency(depSpec: { name: string; version: string; }, packageMap: ReadonlyMap, curPkgGroup: string | undefined): boolean; export declare const handlers: Handler[]; //# sourceMappingURL=fluidBuildTasks.d.ts.map