@kb-labs/core-state-daemon 2.114.0 → 2.116.11

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/dist/bin.cjs CHANGED
@@ -72839,7 +72839,8 @@ async function loadPlatformConfig(options = {}) {
72839
72839
  `Platform config is invalid after applying overlays (${appliedOverlays.length} overlay(s)): ${detail}`
72840
72840
  );
72841
72841
  }
72842
- const effective = interpolateConfig(merged, false, env);
72842
+ const strictInterpolation = env.NODE_ENV === "production";
72843
+ const effective = interpolateConfig(merged, strictInterpolation, env);
72843
72844
  return {
72844
72845
  platformConfig: effective,
72845
72846
  rawConfig: rawProjectConfig,