-
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.
Ignores timeout in .npmrc file while job update in npm_and_yarn (#10174)
* Ignores timeout value while generating temporary .npmrc file while native helper run
- Loading branch information
1 parent
61f3faf
commit ccb9ffc
Showing
5 changed files
with
167 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
11 changes: 11 additions & 0 deletions
11
npm_and_yarn/spec/fixtures/projects/npm6/npmrc_env_timeout/.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,11 @@ | ||
legacy-peer-deps=true | ||
loglevel=verbose | ||
timeout=90000 | ||
fetch-retries=3 | ||
fetch-retry-maxtimeout=4 | ||
fetch-retry-mintimeout=3 | ||
fetch-timeout=400000 | ||
_auth = ${NPM_AUTH} | ||
always-auth = true | ||
strict-ssl = true | ||
//npm.fury.io/dependabot/:_authToken=secret_token |
76 changes: 76 additions & 0 deletions
76
npm_and_yarn/spec/fixtures/projects/npm6/npmrc_env_timeout/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
npm_and_yarn/spec/fixtures/projects/npm6/npmrc_env_timeout/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,25 @@ | ||
{ | ||
"name": "{{ name }}", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no\\ test\ specified\" && exit 1", | ||
"prettify": "prettier --write \"{{packages/*/src,examples,cypress,scripts}/**/,}*.{js,jsx,ts,tsx,css,md}\"" | ||
}, | ||
"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" : "^1.0.0" | ||
}} |