@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andersbakken/fisk",
3
- "version": "4.0.52",
3
+ "version": "4.0.53",
4
4
  "description": "Fisk, a distributed compile system",
5
5
  "scripts": {
6
6
  "lint": "eslint . --ext .ts",
@@ -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
  }