/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommandWithBuildProject } from "../../../library/commands/base.js"; /** * Generate a changelog for packages based on changesets. Note that this process deletes the changeset files! * * The reason we use a search/replace approach to update the version strings in the changelogs is largely because of * https://github.com/changesets/changesets/issues/595. What we would like to do is generate the changelogs without * doing version bumping, but that feature does not exist in the changeset tools. */ export default class GenerateChangeLogCommand extends BaseCommandWithBuildProject { static readonly description = "Generate a changelog for packages based on changesets. Note that this process deletes the changeset files!"; static readonly aliases: string[]; static readonly flags: { readonly releaseGroup: import("@oclif/core/interfaces").OptionFlag; readonly version: import("@oclif/core/interfaces").OptionFlag; }; static readonly examples: { description: string; command: string; }[]; run(): Promise; } //# sourceMappingURL=changelog.d.ts.map