@travetto/cli 4.0.5 → 4.0.7
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 +1 -1
- package/package.json +3 -3
- package/support/transformer.cli.ts +1 -1
package/README.md
CHANGED
|
@@ -494,7 +494,7 @@ export class RunRestCommand implements CliCommandShape {
|
|
|
494
494
|
if (await CliUtil.debugIfIpc(this) || await CliUtil.runWithRestart(this)) {
|
|
495
495
|
return;
|
|
496
496
|
}
|
|
497
|
-
const { RestApplication } = await import('../src/application/rest
|
|
497
|
+
const { RestApplication } = await import('../src/application/rest');
|
|
498
498
|
try {
|
|
499
499
|
return await DependencyRegistry.runInstance(RestApplication);
|
|
500
500
|
} catch (err) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/cli",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.7",
|
|
4
4
|
"description": "CLI infrastructure for Travetto framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"directory": "module/cli"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@travetto/schema": "^4.0.
|
|
33
|
-
"@travetto/terminal": "^4.0.
|
|
32
|
+
"@travetto/schema": "^4.0.6",
|
|
33
|
+
"@travetto/terminal": "^4.0.5"
|
|
34
34
|
},
|
|
35
35
|
"travetto": {
|
|
36
36
|
"displayName": "Command Line Interface",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import ts from 'typescript';
|
|
2
2
|
|
|
3
3
|
import { TransformerState, DecoratorMeta, AfterClass } from '@travetto/transformer';
|
|
4
|
-
import { SchemaTransformUtil } from '@travetto/schema/support/
|
|
4
|
+
import { SchemaTransformUtil } from '@travetto/schema/support/transformer/util';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Converts classes with `@CliCommand` to `@Schema` and maps the main method
|