@travetto/terminal 8.0.0-alpha.22 → 8.0.0-alpha.24
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/package.json +14 -14
- package/src/trv.d.ts +7 -7
package/package.json
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/terminal",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
4
|
-
"
|
|
3
|
+
"version": "8.0.0-alpha.24",
|
|
4
|
+
"private": false,
|
|
5
5
|
"description": "General terminal support",
|
|
6
6
|
"keywords": [
|
|
7
|
-
"terminal",
|
|
8
7
|
"ansi256",
|
|
8
|
+
"terminal",
|
|
9
9
|
"travetto",
|
|
10
10
|
"typescript"
|
|
11
11
|
],
|
|
12
12
|
"homepage": "https://travetto.io",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"author": {
|
|
15
|
-
"
|
|
16
|
-
"
|
|
15
|
+
"name": "Travetto Framework",
|
|
16
|
+
"email": "travetto.framework@gmail.com"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"url": "git+https://github.com/travetto/travetto.git",
|
|
20
|
+
"directory": "module/terminal"
|
|
17
21
|
},
|
|
18
22
|
"files": [
|
|
19
23
|
"__index__.ts",
|
|
20
24
|
"src"
|
|
21
25
|
],
|
|
26
|
+
"type": "module",
|
|
22
27
|
"main": "__index__.ts",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"directory": "module/terminal"
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
26
30
|
},
|
|
27
31
|
"dependencies": {
|
|
28
|
-
"@travetto/runtime": "^8.0.0-alpha.
|
|
29
|
-
"chalk": "^
|
|
32
|
+
"@travetto/runtime": "^8.0.0-alpha.24",
|
|
33
|
+
"chalk": "^6.0.0"
|
|
30
34
|
},
|
|
31
35
|
"travetto": {
|
|
32
36
|
"displayName": "Terminal"
|
|
33
|
-
},
|
|
34
|
-
"private": false,
|
|
35
|
-
"publishConfig": {
|
|
36
|
-
"access": "public"
|
|
37
37
|
}
|
|
38
38
|
}
|
package/src/trv.d.ts
CHANGED
|
@@ -6,16 +6,16 @@ declare module '@travetto/runtime' {
|
|
|
6
6
|
* Flag for node to disable colors
|
|
7
7
|
*/
|
|
8
8
|
NODE_DISABLE_COLORS: boolean;
|
|
9
|
-
/**
|
|
9
|
+
/**
|
|
10
10
|
* Terminal colors provided as ansi 256 color schemes
|
|
11
11
|
*/
|
|
12
12
|
COLORFGBG: string;
|
|
13
|
-
/**
|
|
14
|
-
* Enables color, even if `tty` is not available
|
|
13
|
+
/**
|
|
14
|
+
* Enables color, even if `tty` is not available
|
|
15
15
|
* @default undefined
|
|
16
16
|
*/
|
|
17
17
|
FORCE_COLOR: boolean | ColorLevel;
|
|
18
|
-
/**
|
|
18
|
+
/**
|
|
19
19
|
* Disables color even if `tty` is available
|
|
20
20
|
* @default false
|
|
21
21
|
*/
|
|
@@ -25,8 +25,8 @@ declare module '@travetto/runtime' {
|
|
|
25
25
|
*/
|
|
26
26
|
COLORTERM: string;
|
|
27
27
|
/**
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
* Terminal operation mode, false means simple output
|
|
29
|
+
*/
|
|
30
30
|
TRV_QUIET: boolean;
|
|
31
31
|
}
|
|
32
|
-
}
|
|
32
|
+
}
|