nx 22.7.6 → 22.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
Binary file
|
|
@@ -251,6 +251,12 @@ class DbCache {
|
|
|
251
251
|
logger_1.logger.warn('The HTTP remote cache is not yet supported in the wasm build of Nx.');
|
|
252
252
|
return null;
|
|
253
253
|
}
|
|
254
|
+
// The cache request runs in Rust (reqwest), which honors
|
|
255
|
+
// NODE_TLS_REJECT_UNAUTHORIZED but bypasses Node's TLS stack, so Node's own
|
|
256
|
+
// insecure-TLS warning never fires for it. Re-emit Node's warning here.
|
|
257
|
+
if (process.env.NODE_TLS_REJECT_UNAUTHORIZED === '0') {
|
|
258
|
+
process.emitWarning("Setting the NODE_TLS_REJECT_UNAUTHORIZED environment variable to '0' makes TLS connections and HTTPS requests insecure by disabling certificate verification.");
|
|
259
|
+
}
|
|
254
260
|
return new native_1.HttpRemoteCache();
|
|
255
261
|
}
|
|
256
262
|
return null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nx",
|
|
3
|
-
"version": "22.7.
|
|
3
|
+
"version": "22.7.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
|
|
@@ -171,16 +171,16 @@
|
|
|
171
171
|
}
|
|
172
172
|
},
|
|
173
173
|
"optionalDependencies": {
|
|
174
|
-
"@nx/nx-darwin-arm64": "22.7.
|
|
175
|
-
"@nx/nx-darwin-x64": "22.7.
|
|
176
|
-
"@nx/nx-freebsd-x64": "22.7.
|
|
177
|
-
"@nx/nx-linux-arm-gnueabihf": "22.7.
|
|
178
|
-
"@nx/nx-linux-arm64-gnu": "22.7.
|
|
179
|
-
"@nx/nx-linux-arm64-musl": "22.7.
|
|
180
|
-
"@nx/nx-linux-x64-gnu": "22.7.
|
|
181
|
-
"@nx/nx-linux-x64-musl": "22.7.
|
|
182
|
-
"@nx/nx-win32-arm64-msvc": "22.7.
|
|
183
|
-
"@nx/nx-win32-x64-msvc": "22.7.
|
|
174
|
+
"@nx/nx-darwin-arm64": "22.7.7",
|
|
175
|
+
"@nx/nx-darwin-x64": "22.7.7",
|
|
176
|
+
"@nx/nx-freebsd-x64": "22.7.7",
|
|
177
|
+
"@nx/nx-linux-arm-gnueabihf": "22.7.7",
|
|
178
|
+
"@nx/nx-linux-arm64-gnu": "22.7.7",
|
|
179
|
+
"@nx/nx-linux-arm64-musl": "22.7.7",
|
|
180
|
+
"@nx/nx-linux-x64-gnu": "22.7.7",
|
|
181
|
+
"@nx/nx-linux-x64-musl": "22.7.7",
|
|
182
|
+
"@nx/nx-win32-arm64-msvc": "22.7.7",
|
|
183
|
+
"@nx/nx-win32-x64-msvc": "22.7.7"
|
|
184
184
|
},
|
|
185
185
|
"nx-migrations": {
|
|
186
186
|
"migrations": "./migrations.json",
|