hereya-cli 0.20.0 → 0.21.0
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 +52 -30
- package/dist/commands/add/index.js +18 -5
- package/dist/commands/deploy/index.js +31 -10
- package/dist/commands/down/index.js +15 -6
- package/dist/commands/remove/index.js +14 -5
- package/dist/commands/undeploy/index.js +20 -7
- package/dist/commands/up/index.js +20 -7
- package/dist/commands/workspace/install/index.js +8 -3
- package/dist/commands/workspace/uninstall/index.js +8 -3
- package/dist/executor/interface.d.ts +2 -0
- package/dist/executor/local.js +2 -0
- package/dist/iac/cdk.js +7 -3
- package/dist/iac/common.d.ts +2 -0
- package/dist/iac/terraform.d.ts +2 -1
- package/dist/iac/terraform.js +19 -8
- package/dist/infrastructure/aws.js +2 -0
- package/dist/infrastructure/common.d.ts +2 -0
- package/dist/infrastructure/index.d.ts +2 -0
- package/dist/infrastructure/index.js +4 -0
- package/dist/infrastructure/local.js +2 -0
- package/dist/lib/log.d.ts +12 -3
- package/dist/lib/log.js +21 -12
- package/dist/lib/shell.d.ts +3 -8
- package/dist/lib/shell.js +2 -8
- package/oclif.manifest.json +10 -10
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"aliases": [],
|
|
5
5
|
"args": {
|
|
6
6
|
"package": {
|
|
7
|
-
"description": "The package to add
|
|
7
|
+
"description": "\n The package to add, specified as a GitHub repository in the format owner/repository.\n To change the registry URL, set the HEREYA_REGISTRY_URL environment variable, so that it points to $HEREYA_REGISTRY_URL/owner/repository.\n For local packages, use the format local://path/to/package where path/to/package is the path to the package on your local machine.\n ",
|
|
8
8
|
"name": "package",
|
|
9
9
|
"required": true
|
|
10
10
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"flags": {
|
|
17
17
|
"chdir": {
|
|
18
|
-
"description": "
|
|
18
|
+
"description": "\n Directory where the command will be executed.\n If not specified, it defaults to the current working directory.\n Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR environment variable.\n ",
|
|
19
19
|
"name": "chdir",
|
|
20
20
|
"required": false,
|
|
21
21
|
"hasDynamicHelp": false,
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
],
|
|
103
103
|
"flags": {
|
|
104
104
|
"chdir": {
|
|
105
|
-
"description": "
|
|
105
|
+
"description": "\n Directory where the command will be executed.\n If not specified, it defaults to the current working directory.\n Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR environment variable.\n ",
|
|
106
106
|
"name": "chdir",
|
|
107
107
|
"required": false,
|
|
108
108
|
"hasDynamicHelp": false,
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
],
|
|
151
151
|
"flags": {
|
|
152
152
|
"chdir": {
|
|
153
|
-
"description": "
|
|
153
|
+
"description": "\n Directory where the command will be executed.\n If not specified, it defaults to the current working directory.\n Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR environment variable.\n ",
|
|
154
154
|
"name": "chdir",
|
|
155
155
|
"required": false,
|
|
156
156
|
"hasDynamicHelp": false,
|
|
@@ -172,7 +172,7 @@
|
|
|
172
172
|
},
|
|
173
173
|
"workspace": {
|
|
174
174
|
"char": "w",
|
|
175
|
-
"description": "name of the workspace to
|
|
175
|
+
"description": "name of the workspace to destroy the packages for",
|
|
176
176
|
"name": "workspace",
|
|
177
177
|
"required": false,
|
|
178
178
|
"hasDynamicHelp": false,
|
|
@@ -308,7 +308,7 @@
|
|
|
308
308
|
"aliases": [],
|
|
309
309
|
"args": {
|
|
310
310
|
"package": {
|
|
311
|
-
"description": "
|
|
311
|
+
"description": "Remove a previously added package.",
|
|
312
312
|
"name": "package",
|
|
313
313
|
"required": true
|
|
314
314
|
}
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
],
|
|
320
320
|
"flags": {
|
|
321
321
|
"chdir": {
|
|
322
|
-
"description": "
|
|
322
|
+
"description": "\n Directory where the command will be executed.\n If not specified, it defaults to the current working directory.\n Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR environment variable.\n ",
|
|
323
323
|
"name": "chdir",
|
|
324
324
|
"required": false,
|
|
325
325
|
"hasDynamicHelp": false,
|
|
@@ -446,7 +446,7 @@
|
|
|
446
446
|
],
|
|
447
447
|
"flags": {
|
|
448
448
|
"chdir": {
|
|
449
|
-
"description": "
|
|
449
|
+
"description": "\n Directory where the command will be executed.\n If not specified, it defaults to the current working directory.\n Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR environment variable.\n ",
|
|
450
450
|
"name": "chdir",
|
|
451
451
|
"required": false,
|
|
452
452
|
"hasDynamicHelp": false,
|
|
@@ -494,7 +494,7 @@
|
|
|
494
494
|
],
|
|
495
495
|
"flags": {
|
|
496
496
|
"chdir": {
|
|
497
|
-
"description": "
|
|
497
|
+
"description": "\n Directory where the command will be executed.\n If not specified, it defaults to the current working directory.\n Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR environment variable.\n ",
|
|
498
498
|
"name": "chdir",
|
|
499
499
|
"required": false,
|
|
500
500
|
"hasDynamicHelp": false,
|
|
@@ -954,5 +954,5 @@
|
|
|
954
954
|
]
|
|
955
955
|
}
|
|
956
956
|
},
|
|
957
|
-
"version": "0.
|
|
957
|
+
"version": "0.21.0"
|
|
958
958
|
}
|