@travetto/runtime 5.0.7 → 5.0.9

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/README.md CHANGED
@@ -76,9 +76,9 @@ The functionality we support for testing and retrieving environment information
76
76
  ```typescript
77
77
  interface EnvData {
78
78
  /**
79
- * The node environment we are running in
80
- * @default development
81
- */
79
+ * The node environment we are running in
80
+ * @default development
81
+ */
82
82
  NODE_ENV: 'development' | 'production';
83
83
  /**
84
84
  * Outputs all console.debug messages, defaults to `local` in dev, and `off` in prod.
package/__index__.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import type { } from './src/global';
2
+ import type { } from './src/trv';
2
3
  export * from './src/binary';
3
4
  export * from './src/console';
4
5
  export * from './src/context';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/runtime",
3
- "version": "5.0.7",
3
+ "version": "5.0.9",
4
4
  "description": "Runtime for travetto applications.",
5
5
  "keywords": [
6
6
  "console-manager",
@@ -28,13 +28,13 @@
28
28
  "node": ">=22.0.0"
29
29
  },
30
30
  "dependencies": {
31
- "@travetto/manifest": "^5.0.5",
31
+ "@travetto/manifest": "^5.0.6",
32
32
  "@types/debug": "^4.1.12",
33
33
  "@types/node": "^22.7.4",
34
34
  "debug": "^4.3.7"
35
35
  },
36
36
  "peerDependencies": {
37
- "@travetto/transformer": "^5.0.6"
37
+ "@travetto/transformer": "^5.0.7"
38
38
  },
39
39
  "peerDependenciesMeta": {
40
40
  "@travetto/transformer": {
package/src/trv.d.ts CHANGED
@@ -5,9 +5,9 @@ type Role = Exclude<ManifestModuleRole, 'std' | 'compile'>;
5
5
  declare module "@travetto/runtime" {
6
6
  interface EnvData {
7
7
  /**
8
- * The node environment we are running in
9
- * @default development
10
- */
8
+ * The node environment we are running in
9
+ * @default development
10
+ */
11
11
  NODE_ENV: 'development' | 'production';
12
12
  /**
13
13
  * Outputs all console.debug messages, defaults to `local` in dev, and `off` in prod.