@travetto/runtime 8.0.0 → 8.0.1
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 +8 -8
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -83,35 +83,35 @@ The functionality we support for testing and retrieving environment information
|
|
|
83
83
|
**Code: Base Known Environment Flags**
|
|
84
84
|
```typescript
|
|
85
85
|
interface EnvData {
|
|
86
|
-
/**
|
|
86
|
+
/**
|
|
87
87
|
* The node environment we are running in
|
|
88
88
|
* @default development
|
|
89
89
|
*/
|
|
90
90
|
NODE_ENV: 'development' | 'production';
|
|
91
|
-
/**
|
|
91
|
+
/**
|
|
92
92
|
* Outputs all console.debug messages, defaults to off
|
|
93
93
|
*/
|
|
94
94
|
DEBUG: boolean | string;
|
|
95
|
-
/**
|
|
95
|
+
/**
|
|
96
96
|
* The role we are running as, allows access to additional files from the manifest during runtime.
|
|
97
97
|
*/
|
|
98
98
|
TRV_ROLE: Role;
|
|
99
|
-
/**
|
|
99
|
+
/**
|
|
100
100
|
* The folders to use for resource lookup
|
|
101
101
|
*/
|
|
102
102
|
TRV_RESOURCES: string[];
|
|
103
|
-
/**
|
|
103
|
+
/**
|
|
104
104
|
* Resource path overrides
|
|
105
105
|
* @private
|
|
106
106
|
*/
|
|
107
107
|
TRV_RESOURCE_OVERRIDES: Record<string, string>;
|
|
108
|
-
/**
|
|
109
|
-
* The max time to wait for shutdown to finish after initial SIGINT,
|
|
108
|
+
/**
|
|
109
|
+
* The max time to wait for shutdown to finish after initial SIGINT,
|
|
110
110
|
* @default 2s
|
|
111
111
|
*/
|
|
112
112
|
TRV_SHUTDOWN_WAIT: TimeSpan | number;
|
|
113
113
|
/**
|
|
114
|
-
* The desired runtime module
|
|
114
|
+
* The desired runtime module
|
|
115
115
|
*/
|
|
116
116
|
TRV_MODULE: string;
|
|
117
117
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/runtime",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Runtime for travetto applications.",
|
|
6
6
|
"keywords": [
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@travetto/manifest": "^8.0.
|
|
33
|
+
"@travetto/manifest": "^8.0.1",
|
|
34
34
|
"@types/debug": "^4.1.13",
|
|
35
35
|
"debug": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@travetto/transformer": "^8.0.
|
|
39
|
-
"temporal-polyfill-lite": "^0.4.
|
|
38
|
+
"@travetto/transformer": "^8.0.1",
|
|
39
|
+
"temporal-polyfill-lite": "^0.4.3"
|
|
40
40
|
},
|
|
41
41
|
"peerDependenciesMeta": {
|
|
42
42
|
"@travetto/transformer": {
|