@travetto/cli 8.0.0-alpha.32 → 8.0.0-alpha.33
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 +15 -15
- package/src/trv.d.ts +5 -5
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/cli",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "8.0.0-alpha.33",
|
|
5
4
|
"description": "CLI infrastructure for Travetto framework",
|
|
6
5
|
"keywords": [
|
|
7
6
|
"cli",
|
|
@@ -11,8 +10,15 @@
|
|
|
11
10
|
"homepage": "https://travetto.io",
|
|
12
11
|
"license": "MIT",
|
|
13
12
|
"author": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
13
|
+
"name": "Travetto Framework",
|
|
14
|
+
"email": "travetto.framework@gmail.com"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"url": "git+https://github.com/travetto/travetto.git",
|
|
18
|
+
"directory": "module/cli"
|
|
19
|
+
},
|
|
20
|
+
"bin": {
|
|
21
|
+
"trv": "bin/trv.js"
|
|
16
22
|
},
|
|
17
23
|
"files": [
|
|
18
24
|
"__index__.ts",
|
|
@@ -20,23 +26,17 @@
|
|
|
20
26
|
"src",
|
|
21
27
|
"support"
|
|
22
28
|
],
|
|
29
|
+
"type": "module",
|
|
23
30
|
"main": "__index__.ts",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
},
|
|
27
|
-
"repository": {
|
|
28
|
-
"url": "git+https://github.com/travetto/travetto.git",
|
|
29
|
-
"directory": "module/cli"
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
30
33
|
},
|
|
31
34
|
"dependencies": {
|
|
32
|
-
"@travetto/schema": "^8.0.0-alpha.
|
|
33
|
-
"@travetto/terminal": "^8.0.0-alpha.
|
|
35
|
+
"@travetto/schema": "^8.0.0-alpha.27",
|
|
36
|
+
"@travetto/terminal": "^8.0.0-alpha.24"
|
|
34
37
|
},
|
|
35
38
|
"travetto": {
|
|
36
39
|
"displayName": "Command Line Interface",
|
|
37
40
|
"workspaceInclude": true
|
|
38
|
-
},
|
|
39
|
-
"publishConfig": {
|
|
40
|
-
"access": "public"
|
|
41
41
|
}
|
|
42
42
|
}
|
package/src/trv.d.ts
CHANGED
|
@@ -2,18 +2,18 @@ import '@travetto/runtime';
|
|
|
2
2
|
|
|
3
3
|
declare module '@travetto/runtime' {
|
|
4
4
|
interface EnvData {
|
|
5
|
-
/**
|
|
6
|
-
* Provides an IPC http url for the CLI to communicate with.
|
|
5
|
+
/**
|
|
6
|
+
* Provides an IPC http url for the CLI to communicate with.
|
|
7
7
|
* This facilitates cli-based invocation for external usage.
|
|
8
8
|
*/
|
|
9
9
|
TRV_CLI_IPC: string;
|
|
10
|
-
/**
|
|
10
|
+
/**
|
|
11
11
|
* Signals to the child they are the restart target
|
|
12
12
|
*/
|
|
13
13
|
TRV_RESTART_TARGET: boolean;
|
|
14
|
-
/**
|
|
14
|
+
/**
|
|
15
15
|
* Overrides behavior for triggering debug session via IPC
|
|
16
16
|
*/
|
|
17
17
|
TRV_DEBUG_IPC: boolean;
|
|
18
18
|
}
|
|
19
|
-
}
|
|
19
|
+
}
|