@andersbakken/fisk 4.0.52 → 4.0.53
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.
package/package.json
CHANGED
|
@@ -54944,6 +54944,13 @@ server.on("compile", (compile) => {
|
|
|
54944
54944
|
bestScore = builderScore;
|
|
54945
54945
|
builder = s;
|
|
54946
54946
|
foundInCache = true;
|
|
54947
|
+
// Find which usable environment this builder has
|
|
54948
|
+
for (let i = 0; i < usableEnvs.length; ++i) {
|
|
54949
|
+
if (usableEnvs[i] in s.environments) {
|
|
54950
|
+
env = usableEnvs[i];
|
|
54951
|
+
break;
|
|
54952
|
+
}
|
|
54953
|
+
}
|
|
54947
54954
|
}
|
|
54948
54955
|
});
|
|
54949
54956
|
}
|