npm package diff
Package: @forge/cli
Versions: 11.4.0-next.1-experimental-5364136 - 11.4.0-next.14
File: package/out/command-line/controller/build-controller.d.ts
Index: package/out/command-line/controller/build-controller.d.ts
===================================================================
--- package/out/command-line/controller/build-controller.d.ts
+++ package/out/command-line/controller/build-controller.d.ts
@@ -0,0 +1,36 @@
+import { LintService } from '../../service/lint-service';
+import { BuildView } from '../view/build-view';
+import { ConfigFile, ErrorAnalytics, HiddenError } from '@forge/cli-shared';
+import { PackageUploadDeployCommand } from '../../deploy';
+import { BuildService } from '../../service/build-service';
+interface BuildOptions {
+ environment: string;
+ verify: boolean;
+ buildTag?: string;
+}
+export declare class BuildLintFailureError extends HiddenError {
+ private readonly scopes;
+ constructor(scopes: string[]);
+ getAttributes(): ErrorAnalytics;
+ isUserError(): boolean;
+}
+export declare class ManifestEnvironmentVariablesError extends Error {
+ constructor(message: string);
+ isUserError(): boolean;
+}
+export declare class BuildController {
+ private readonly buildView;
+ private readonly lintService;
+ private readonly configFile;
+ private readonly sandboxPackageUploadDeployCommand;
+ private readonly nodePackageUploadDeployCommand;
+ private readonly buildService;
+ constructor(buildView: BuildView, lintService: LintService, configFile: ConfigFile, sandboxPackageUploadDeployCommand: PackageUploadDeployCommand, nodePackageUploadDeployCommand: PackageUploadDeployCommand, buildService: BuildService);
+ run({ environment, verify, buildTag }: BuildOptions): Promise<void>;
+ private getBuildCommand;
+ private verifyPreBuild;
+ private checkForUIKit1Modules;
+ private checkForManifestVariables;
+}
+export {};
+//# sourceMappingURL=build-controller.d.ts.map
\ No newline at end of file