/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/commands/base.js"; /** * Manually deploy the build performance dashboard to Azure Static Web Apps. * Expects data files produced by the `collect` command. Prepares a deployment * package (data files, HTML, config) and deploys using the SWA CLI. The SWA CLI is * used instead of standard GitHub-based deployment because this pipeline runs in ADO. * The deployed HTML fetches data at runtime from `data/*.json`, showing tabs for both modes. */ export default class BuildPerfDeployCommand extends BaseCommand { static readonly description = "Manually deploy the build performance dashboard to Azure Static Web Apps."; static readonly flags: { mode: import("@oclif/core/interfaces").OptionFlag; aswaHostname: import("@oclif/core/interfaces").OptionFlag; deploymentToken: import("@oclif/core/interfaces").OptionFlag; dataDir: import("@oclif/core/interfaces").OptionFlag; }; static readonly examples: { description: string; command: string; }[]; run(): Promise; private logDeployContents; } //# sourceMappingURL=deploy.d.ts.map