fiberx-backend-toolkit 0.0.21 → 0.0.22

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.
@@ -35,7 +35,7 @@ class EnvManagerUtil {
35
35
  return env_var_options?.production_file_name ?? "production_env.yaml";
36
36
  }
37
37
  else {
38
- return "env.yaml";
38
+ return env_var_options?.development_file_name ?? "development_env.yaml";
39
39
  }
40
40
  }
41
41
  // ✅ Global access point
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fiberx-backend-toolkit",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "description": "A TypeScript backend toolkit providing shared domain logic, infrastructure helpers, and utilities for FiberX server-side applications and services.",
5
5
  "type": "commonjs",
6
6
  "main": "./dist/index.js",