@travetto/cli 5.0.0 → 5.0.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/README.md +1 -1
- package/package.json +3 -3
- package/src/error.ts +1 -0
package/README.md
CHANGED
|
@@ -377,7 +377,7 @@ npx trv call:db +=base --password <custom>
|
|
|
377
377
|
```
|
|
378
378
|
|
|
379
379
|
The flag files can be included in one of a few ways:
|
|
380
|
-
* `+=<name>` - This translates into
|
|
380
|
+
* `+=<name>` - This translates into `<mod>/support/<name>.flags`, which is a convenient shorthand.
|
|
381
381
|
* `+=<mod>/path/file.flags` - This is a path-related file that will be resolved from the module's location.
|
|
382
382
|
* `+=/path/file.flags` - This is an absolute path that will be read from the root of the file system.
|
|
383
383
|
Ultimately, after resolution, the content of these files will be injected inline within the location.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/cli",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
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": "^5.0.
|
|
33
|
-
"@travetto/terminal": "^5.0.
|
|
32
|
+
"@travetto/schema": "^5.0.2",
|
|
33
|
+
"@travetto/terminal": "^5.0.2"
|
|
34
34
|
},
|
|
35
35
|
"travetto": {
|
|
36
36
|
"displayName": "Command Line Interface",
|