/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/commands/base.js"; /** * Update the dependency version of a specified package or release group. That is, if one or more packages in the repo * depend on package A, then this command will update the dependency range on package A. The dependencies and the * packages updated can be filtered using various flags. * * @remarks * * This command is roughly equivalent to `fluid-bump-version --dep`. */ export default class DepsCommand extends BaseCommand { static readonly description = "Update the dependency version of a specified package or release group. That is, if one or more packages in the repo depend on package A, then this command will update the dependency range on package A. The dependencies and the packages updated can be filtered using various flags.\n\nTo learn more see the detailed documentation at https://github.com/microsoft/FluidFramework/blob/main/build-tools/packages/build-cli/docs/bumpDetails.md"; static readonly args: { readonly package_or_release_group: import("@oclif/core/interfaces").Arg>; }; static readonly flags: { readonly updateType: import("@oclif/core/interfaces").OptionFlag<"minor" | "patch" | "latest" | `@${string}` | "newest" | "greatest", import("@oclif/core/interfaces").CustomOptions>; readonly prerelease: import("@oclif/core/interfaces").BooleanFlag; readonly onlyBumpPrerelease: import("@oclif/core/interfaces").BooleanFlag; readonly releaseGroup: import("@oclif/core/interfaces").OptionFlag<"client" | "server" | "build-tools" | "gitrest" | "historian" | undefined, import("@oclif/core/interfaces").CustomOptions>; readonly package: import("@oclif/core/interfaces").OptionFlag; readonly commit: import("@oclif/core/interfaces").BooleanFlag; readonly install: import("@oclif/core/interfaces").BooleanFlag; readonly skipChecks: import("@oclif/core/interfaces").BooleanFlag; readonly updateChecker: import("@oclif/core/interfaces").OptionFlag; readonly testMode: import("@oclif/core/interfaces").BooleanFlag; }; static readonly examples: { description: string; command: string; }[]; /** * An array of messages that will be shown after the command runs. */ private readonly finalMessages; /** * Runs the `bump deps` command. */ run(): Promise; } //# sourceMappingURL=deps.d.ts.map