npm package diff

Package: @forge/cli-shared

Versions: 6.6.1-next.13 - 6.6.1-next.14

File: package/out/shared/error-handling.js

Index: package/out/shared/error-handling.js
===================================================================
--- package/out/shared/error-handling.js
+++ package/out/shared/error-handling.js
@@ -1,7 +1,7 @@
 "use strict";
 Object.defineProperty(exports, "__esModule", { value: true });
-exports.UIPromptError = exports.ApplicationCompileError = exports.BundlerTSError = exports.ValidationError = exports.assertIsError = exports.wrapError = exports.exitOnError = exports.HiddenError = exports.UserError = exports.BaseError = exports.getErrorAttributes = exports.isUserError = void 0;
+exports.PartialInstallationError = exports.UIPromptError = exports.ApplicationCompileError = exports.BundlerTSError = exports.ValidationError = exports.assertIsError = exports.wrapError = exports.exitOnError = exports.HiddenError = exports.UserError = exports.BaseError = exports.getErrorAttributes = exports.isUserError = void 0;
 const tslib_1 = require("tslib");
 const ui_1 = require("../ui");
 const Sentry = tslib_1.__importStar(require("@sentry/node"));
 function isErrorWithAnalytics(e) {
@@ -120,4 +120,10 @@
         return this.isTtyError;
     }
 }
 exports.UIPromptError = UIPromptError;
+class PartialInstallationError extends UserError {
+    constructor(message) {
+        super(message);
+    }
+}
+exports.PartialInstallationError = PartialInstallationError;