@travetto/config 7.0.0-rc.3 → 7.0.0-rc.4

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/service.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/config",
3
- "version": "7.0.0-rc.3",
3
+ "version": "7.0.0-rc.4",
4
4
  "description": "Configuration support",
5
5
  "keywords": [
6
6
  "yaml",
@@ -26,8 +26,8 @@
26
26
  "directory": "module/config"
27
27
  },
28
28
  "dependencies": {
29
- "@travetto/di": "^7.0.0-rc.3",
30
- "@travetto/schema": "^7.0.0-rc.3",
29
+ "@travetto/di": "^7.0.0-rc.4",
30
+ "@travetto/schema": "^7.0.0-rc.4",
31
31
  "yaml": "^2.8.1"
32
32
  },
33
33
  "travetto": {
package/src/service.ts CHANGED
@@ -150,8 +150,8 @@ export class ConfigurationService {
150
150
  },
151
151
  runtime: {
152
152
  env: Runtime.env,
153
+ envType: Runtime.envType,
153
154
  debug: Runtime.debug,
154
- production: Runtime.production,
155
155
  resourcePaths: RuntimeResources.searchPaths,
156
156
  profiles: Env.TRV_PROFILES.list ?? []
157
157
  },