UNPKG

extension-develop

Version:
37 lines (36 loc) 2.91 kB
import { Manifest } from '../webpack/webpack-types'; import { type DevOptions } from './config-types'; export declare function manifestNotFoundError(manifestPath: string): string; export declare function packageJsonNotFoundError(manifestPath: string): string; export declare function building(browser: DevOptions['browser']): string; export declare function runningInProduction(outputPath: string): string; export declare function ready(mode: DevOptions['mode'], browser: DevOptions['browser']): string; export declare function previewing(browser: DevOptions['browser']): string; export declare function previewWebpack(): string; export declare function buildWebpack(projectDir: string, stats: any, browser: DevOptions['browser']): string; export declare function buildSuccess(): string; export declare function fetchingProjectPath(owner: string, project: string): string; export declare function downloadingProjectPath(projectName: string): string; export declare function creatingProjectPath(projectPath: string): string; export declare function noGitIgnoreFound(projectDir: string): string; export declare function packagingSourceFiles(zipPath: string): string; export declare function packagingDistributionFiles(zipPath: string): string; export declare function treeWithSourceAndDistFiles(browser: DevOptions['browser'], name: string, sourceZip: string, destZip: string): string; export declare function treeWithDistFilesbrowser(name: string, ext: string, browser: DevOptions['browser'], zipPath: string): string; export declare function treeWithSourceFiles(name: string, ext: string, browser: DevOptions['browser'], zipPath: string): string; export declare function failedToCompressError(error: any): string; export declare function writingTypeDefinitions(manifest: Manifest): string; export declare function writingTypeDefinitionsError(error: any): string; export declare function downloadingText(url: string): string; export declare function unpackagingExtension(zipFilePath: string): string; export declare function unpackagedSuccessfully(): string; export declare function failedToDownloadOrExtractZIPFileError(error: any): string; export declare function invalidRemoteZip(url: string, contentType: string): string; export declare function isUsingExperimentalConfig(integration: any): string; export declare function installingDependencies(): string; export declare function installingDependenciesFailed(gitCommand: string, gitArgs: string[], code: number | null): string; export declare function installingDependenciesProcessError(error: any): string; export declare function cantInstallDependencies(error: any): string; export declare function portInUse(requestedPort: number, newPort: number): string; export declare function configLoadingError(configPath: string, error: unknown): string; export declare function managedDependencyConflict(duplicates: string[], userPackageJsonPath: string): string;