/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/index.js"; /** * Updates the version of a dependency in the lockfile. * * @remarks * This command is primarily used manually to update transitive dependencies when we need to address CVEs. * * Note that this applies to all packages in the specified release group. */ export default class UpdateDependencyInLockfileCommand extends BaseCommand { static readonly summary = "Updates a dependency in the pnpm lockfile to the latest version of a specified semver range."; static readonly description: string; static readonly enableJsonFlag = true; static readonly flags: { dependencyName: import("@oclif/core/interfaces").OptionFlag; version: import("@oclif/core/interfaces").OptionFlag; }; static readonly args: { readonly package_or_release_group: import("@oclif/core/interfaces").Arg>; }; run(): Promise; } //# sourceMappingURL=lockfile.d.ts.map