@travetto/terminal 5.0.1 → 5.0.3

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/__index__.ts CHANGED
@@ -1,4 +1,4 @@
1
- /// <reference path="./src/trv.d.ts" />
1
+ import type { } from './src/trv';
2
2
  export * from './src/style';
3
3
  export * from './src/terminal';
4
4
  export * from './src/writer';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/terminal",
3
- "version": "5.0.1",
3
+ "version": "5.0.3",
4
4
  "description": "General terminal support",
5
5
  "keywords": [
6
6
  "terminal",
@@ -24,7 +24,7 @@
24
24
  "directory": "module/terminal"
25
25
  },
26
26
  "dependencies": {
27
- "@travetto/runtime": "^5.0.1",
27
+ "@travetto/runtime": "^5.0.3",
28
28
  "chalk": "^4.1.2"
29
29
  },
30
30
  "travetto": {
package/src/trv.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import type { ColorLevel } from './style';
2
2
 
3
- declare global {
4
- interface TravettoEnv {
3
+ declare module '@travetto/runtime' {
4
+ interface EnvData {
5
5
  /**
6
6
  * Flag for node to disable colors
7
7
  */