@travetto/runtime 5.0.6 → 5.0.8
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 +3 -3
- package/__index__.ts +1 -0
- package/package.json +3 -3
- package/src/trv.d.ts +3 -3
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
|
-
|
|
80
|
-
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/runtime",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.8",
|
|
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.
|
|
31
|
+
"@travetto/manifest": "^5.0.5",
|
|
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.
|
|
37
|
+
"@travetto/transformer": "^5.0.6"
|
|
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
|
-
|
|
9
|
-
|
|
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.
|