/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/index.js"; /** * This command class is used to compute the version number of Fluid packages. The release version number is based on * what's in the release group root package.json. The CI pipeline will supply the build number and branch to determine * the prerelease suffix if it is not a tagged build. */ export default class GenerateBuildVersionCommand extends BaseCommand { static readonly description = "This command is used to compute the version number of Fluid packages. The release version number is based on what's in the release group root package.json. The CI pipeline will supply the build number and branch to determine the prerelease suffix if it is not a tagged build."; static readonly examples: string[]; static readonly flags: { readonly build: import("@oclif/core/interfaces").OptionFlag; readonly testBuild: import("@oclif/core/interfaces").OptionFlag; readonly release: import("@oclif/core/interfaces").OptionFlag; readonly patch: import("@oclif/core/interfaces").OptionFlag; readonly base: import("@oclif/core/interfaces").OptionFlag; readonly tag: import("@oclif/core/interfaces").OptionFlag; readonly includeInternalVersions: import("@oclif/core/interfaces").OptionFlag; readonly packageTypes: import("@oclif/core/interfaces").OptionFlag; readonly fileVersion: import("@oclif/core/interfaces").OptionFlag; readonly tags: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; private getFileVersion; } //# sourceMappingURL=buildVersion.d.ts.map