Skip to content

Commit 5c23510

Browse files
committed
chore: use proxy instead of http-proxy (#6814)
The proxy package is more spec compliant and works out-of-the-box so we no longer have to pass --registry=PROXY to the tests. The goal here is to make it simpler to help debug #6793.
1 parent b66ad59 commit 5c23510

File tree

7 files changed

+1516
-1335
lines changed

7 files changed

+1516
-1335
lines changed

DEPENDENCIES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,11 +714,11 @@ graph LR;
714714
npmcli-run-script-->npmcli-promise-spawn["@npmcli/promise-spawn"];
715715
npmcli-run-script-->read-package-json-fast;
716716
npmcli-run-script-->which;
717-
npmcli-smoke-tests-->http-proxy;
718717
npmcli-smoke-tests-->npmcli-eslint-config["@npmcli/eslint-config"];
719718
npmcli-smoke-tests-->npmcli-mock-registry["@npmcli/mock-registry"];
720719
npmcli-smoke-tests-->npmcli-promise-spawn["@npmcli/promise-spawn"];
721720
npmcli-smoke-tests-->npmcli-template-oss["@npmcli/template-oss"];
721+
npmcli-smoke-tests-->proxy;
722722
npmcli-smoke-tests-->tap;
723723
npmcli-smoke-tests-->which;
724724
npmlog-->are-we-there-yet;

node_modules/is-core-module/core.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"sys": [">= 0.4 && < 0.7", ">= 0.8"],
116116
"node:sys": [">= 14.18 && < 15", ">= 16"],
117117
"test/reporters": ">= 19.9 && < 20.2",
118-
"node:test/reporters": [">= 19.9", ">= 20"],
118+
"node:test/reporters": [">= 18.17 && < 19", ">= 19.9", ">= 20"],
119119
"node:test": [">= 16.17 && < 17", ">= 18"],
120120
"timers": true,
121121
"node:timers": [">= 14.18 && < 15", ">= 16"],
@@ -149,8 +149,8 @@
149149
"node:v8": [">= 14.18 && < 15", ">= 16"],
150150
"vm": true,
151151
"node:vm": [">= 14.18 && < 15", ">= 16"],
152-
"wasi": [">= 13.4 && < 13.5", ">= 20"],
153-
"node:wasi": ">= 20",
152+
"wasi": [">= 13.4 && < 13.5", ">= 18.17 && < 19", ">= 20"],
153+
"node:wasi": [">= 18.17 && < 19", ">= 20"],
154154
"worker_threads": ">= 11.7",
155155
"node:worker_threads": [">= 14.18 && < 15", ">= 16"],
156156
"zlib": ">= 0.5",

node_modules/is-core-module/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "is-core-module",
3-
"version": "2.12.1",
3+
"version": "2.13.0",
44
"description": "Is this specifier a node.js core module?",
55
"main": "index.js",
66
"sideEffects": false,
@@ -45,17 +45,17 @@
4545
"has": "^1.0.3"
4646
},
4747
"devDependencies": {
48-
"@ljharb/eslint-config": "^21.0.1",
49-
"aud": "^2.0.2",
48+
"@ljharb/eslint-config": "^21.1.0",
49+
"aud": "^2.0.3",
5050
"auto-changelog": "^2.4.0",
5151
"eslint": "=8.8.0",
5252
"in-publish": "^2.0.1",
5353
"mock-property": "^1.0.0",
5454
"npmignore": "^0.3.0",
5555
"nyc": "^10.3.2",
5656
"safe-publish-latest": "^2.0.0",
57-
"semver": "^6.3.0",
58-
"tape": "^5.6.3"
57+
"semver": "^6.3.1",
58+
"tape": "^5.6.6"
5959
},
6060
"auto-changelog": {
6161
"output": "CHANGELOG.md",

0 commit comments

Comments
 (0)