@@ -154,6 +154,8 @@ Array [
154
154
"workspaces",
155
155
"workspaces-update",
156
156
"yes",
157
+ "omit-lockfile-registry-resolved",
158
+ "record-default-registry",
157
159
]
158
160
`
159
161
@@ -1223,6 +1225,21 @@ If the resulting omit list includes \`'dev'\`, then the \`NODE_ENV\` environment
1223
1225
variable will be set to \`'production'\` for all lifecycle scripts.
1224
1226
`
1225
1227
1228
+ exports [ `test/lib/utils/config/definitions.js TAP > config description for omit-lockfile-registry-resolved 1` ] = `
1229
+ #### \`omit-lockfile-registry-resolved\`
1230
+
1231
+ * Default: false
1232
+ * Type: Boolean
1233
+
1234
+ Set to true to omit 'resolved' key from registry dependencies in lock files.
1235
+
1236
+ This setting is useful in projects that may install dependencies from
1237
+ different registries but would use a lockfile to lock package versions. This
1238
+ option makes installing slower because npm must fetch package manifest to
1239
+ resolve the package version's tarball. See 'record-default-registry' for an
1240
+ alternative.
1241
+ `
1242
+
1226
1243
exports [ `test/lib/utils/config/definitions.js TAP > config description for only 1` ] = `
1227
1244
#### \`only\`
1228
1245
@@ -1414,6 +1431,21 @@ exports[`test/lib/utils/config/definitions.js TAP > config description for rebui
1414
1431
Rebuild bundled dependencies after installation.
1415
1432
`
1416
1433
1434
+ exports [ `test/lib/utils/config/definitions.js TAP > config description for record-default-registry 1` ] = `
1435
+ #### \`record-default-registry\`
1436
+
1437
+ * Default: false
1438
+ * Type: Boolean
1439
+
1440
+ Set to true to replace the actual registry in urls resolved from registires
1441
+ with the default registry when recording lock files.
1442
+
1443
+ This setting is useful in projects that may install dependencies from
1444
+ different registries but would use a lockfile to lock package versions. This
1445
+ option supports registries that host tarballs at the same path. If even the
1446
+ path may change see 'omit-lockfile-registry-resolved'.
1447
+ `
1448
+
1417
1449
exports [ `test/lib/utils/config/definitions.js TAP > config description for registry 1` ] = `
1418
1450
#### \`registry\`
1419
1451
0 commit comments