@travetto/cli 3.1.0 → 3.1.2
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 +2 -2
- package/support/entry.cli.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/cli",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.2",
|
|
4
4
|
"description": "CLI infrastructure for Travetto framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"directory": "module/cli"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@travetto/schema": "^3.1.
|
|
27
|
+
"@travetto/schema": "^3.1.2",
|
|
28
28
|
"@travetto/terminal": "^3.1.0"
|
|
29
29
|
},
|
|
30
30
|
"travetto": {
|
package/support/entry.cli.ts
CHANGED
|
@@ -4,7 +4,7 @@ async function entry(): Promise<void> {
|
|
|
4
4
|
const { init, cleanup } = await import('@travetto/base/support/init.js');
|
|
5
5
|
await init();
|
|
6
6
|
try {
|
|
7
|
-
const { ExecutionManager } = await import('@travetto/cli/src/execute');
|
|
7
|
+
const { ExecutionManager } = await import('@travetto/cli/src/execute.js');
|
|
8
8
|
await ExecutionManager.run(process.argv);
|
|
9
9
|
} finally {
|
|
10
10
|
await cleanup();
|