codeplay-common 3.0.2 → 3.0.3
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.
|
@@ -1353,7 +1353,16 @@ if (hasMandatoryUpdate) {
|
|
|
1353
1353
|
|
|
1354
1354
|
if (!success) {
|
|
1355
1355
|
autoFailed = true;
|
|
1356
|
+
|
|
1357
|
+
const pluginDef = requiredPlugins.find(def =>
|
|
1358
|
+
def.pattern.test(p.name)
|
|
1359
|
+
);
|
|
1360
|
+
|
|
1356
1361
|
console.log(`❌ Manual update required for ${p.name}`);
|
|
1362
|
+
|
|
1363
|
+
if (pluginDef) {
|
|
1364
|
+
console.log(`👉 Required minimum version: ${pluginDef.minVersion}`);
|
|
1365
|
+
}
|
|
1357
1366
|
}
|
|
1358
1367
|
}
|
|
1359
1368
|
|