Skip to content
Snippets Groups Projects
Unverified Commit f9617b98 authored by Rhys Arkins's avatar Rhys Arkins Committed by GitHub
Browse files

fix: catch lookup errors gracefully (#12369)

parent 16aff741
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,7 @@ export enum SkipReason { ...@@ -8,6 +8,7 @@ export enum SkipReason {
GitDependency = 'git-dependency', GitDependency = 'git-dependency',
GitPlugin = 'git-plugin', GitPlugin = 'git-plugin',
Ignored = 'ignored', Ignored = 'ignored',
InternalError = 'internal-error',
InternalPackage = 'internal-package', InternalPackage = 'internal-package',
InvalidConfig = 'invalid-config', InvalidConfig = 'invalid-config',
InvalidDependencySpecification = 'invalid-dependency-specification', InvalidDependencySpecification = 'invalid-dependency-specification',
......
This diff is collapsed.
...@@ -57,6 +57,5 @@ export interface UpdateResult { ...@@ -57,6 +57,5 @@ export interface UpdateResult {
fixedVersion?: string; fixedVersion?: string;
updates: LookupUpdate[]; updates: LookupUpdate[];
warnings: ValidationMessage[]; warnings: ValidationMessage[];
versioning?: string;
versioning: string;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment