-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds metadata failure 4xx,5xx error captures (#10483)
Adds metadata failure 4xx,5xx error captures
- Loading branch information
1 parent
66971cb
commit 7962df2
Showing
6 changed files
with
161 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
26 changes: 26 additions & 0 deletions
26
npm_and_yarn/spec/fixtures/projects/pnpm/invalid_package_manager/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,26 @@ | ||
{ | ||
"name": "foo", | ||
"version": "1.0.0", | ||
"description": "", | ||
"packageManager": "pnpm@^9", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/waltfy/PROTO_TEST.git" | ||
}, | ||
"author": "", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/waltfy/PROTO_TEST/issues" | ||
}, | ||
"homepage": "https://github.com/waltfy/PROTO_TEST#readme", | ||
"dependencies": { | ||
"fetch-factory": "^0.0.1" | ||
}, | ||
"devDependencies": { | ||
"etag" : "^2.0.0" | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
npm_and_yarn/spec/fixtures/projects/pnpm/invalid_package_manager/pnpm-lock.yaml
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/pnpm/meta_fetch_fail/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": "foo", | ||
"version": "1.0.0", | ||
"description": "", | ||
"packageManager": "pnpm@9.0.1", | ||
"main": "index.js", | ||
"dependencies": { | ||
"fetch-factory": "^2.0.1" | ||
}, | ||
"devDependencies": { | ||
"etag" : "^2.0.0" | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
npm_and_yarn/spec/fixtures/projects/pnpm/meta_fetch_fail/pnpm-lock.yaml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.