@shushed/helpers 0.0.198-v2-20251107102458 → 0.0.198-v2-20251107110735

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.
@@ -311,6 +311,7 @@ class EnvEngine extends runtime_1.default {
311
311
  const jsonEnv = JSON.parse(process.env[`${this.systemEnvName}ProjectEnv`] || '{ "__mock_invalid": true }');
312
312
  this._envCache[this.systemEnvName] = jsonEnv;
313
313
  }
314
+ this.logging.log('Resolving env name', this.systemEnvName, envName, this._envCache[this.systemEnvName]);
314
315
  const envObj = this._envCache[this.systemEnvName];
315
316
  return envObj[envName] || envName;
316
317
  }
@@ -109,6 +109,9 @@ class Runtime {
109
109
  if (process.env.runtimeEnv) {
110
110
  return process.env.runtimeEnv;
111
111
  }
112
+ if (process.env.BS_ENV) {
113
+ return process.env.BS_ENV;
114
+ }
112
115
  if (options.env?.runtimeEnv) {
113
116
  return options.env.runtimeEnv;
114
117
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shushed/helpers",
3
- "version": "0.0.198-v2-20251107102458",
3
+ "version": "0.0.198-v2-20251107110735",
4
4
  "author": "",
5
5
  "license": "UNLICENSED",
6
6
  "description": "",