/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { type VersionScheme } from "@fluid-tools/version-tools"; import { BaseCommand } from "../library/index.js"; export default class BumpCommand extends BaseCommand { static readonly summary = "Bumps the version of a release group or package to the next minor, major, or patch version, or to a specific version, with control over the interdependency version ranges."; static readonly description = "The bump command is used to bump the version of a release groups or individual packages within the repo. Typically this is done as part of the release process (see the release command), but it is sometimes useful to bump without doing a release, for example when moving a package from one release group to another."; static readonly args: { readonly package_or_release_group: import("@oclif/core/interfaces").Arg>; }; static readonly flags: { bumpType: import("@oclif/core/interfaces").OptionFlag; exact: import("@oclif/core/interfaces").OptionFlag; scheme: import("@oclif/core/interfaces").OptionFlag; exactDepType: import("@oclif/core/interfaces").OptionFlag; interdependencyRange: import("@oclif/core/interfaces").OptionFlag; updateAllDeps: import("@oclif/core/interfaces").BooleanFlag; commit: import("@oclif/core/interfaces").BooleanFlag; install: import("@oclif/core/interfaces").BooleanFlag; skipChecks: 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; run(): Promise; } //# sourceMappingURL=bump.d.ts.map