-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes issues related with Dependabot::NpmAndYarn::UpdateChecker::Late…
…stVersionFinder::RegistryError (#10322) * Handles inconsistent response from registry
- Loading branch information
1 parent
15ee538
commit 7ea926f
Showing
6 changed files
with
87 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
npm_and_yarn/spec/fixtures/projects/npm/simple_with_no_access_registry/.npmrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
engine-strict=true | ||
@gcore:registry = "http://npmrepo.nl" |
22 changes: 22 additions & 0 deletions
22
npm_and_yarn/spec/fixtures/projects/npm/simple_with_no_access_registry/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
npm_and_yarn/spec/fixtures/projects/npm/simple_with_no_access_registry/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "xyz", | ||
"version": "0.1.0", | ||
"main": "index.js", | ||
"author": "abc", | ||
"license": "ISC", | ||
"description": "", | ||
"devDependencies": { | ||
}, | ||
"dependencies": { | ||
"@gcorevideo/rtckit": "^0.61.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters