hereya-cli 0.103.0 → 0.104.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 +68 -68
- package/dist/backend/cloud/cloud-backend/executor-jobs.d.ts +6 -0
- package/dist/backend/cloud/cloud-backend/executor-jobs.js +67 -13
- package/dist/commands/executor/start/index.js +10 -1
- package/dist/iac/terraform.js +11 -7
- package/dist/lib/executor-start/hooks.d.ts +27 -0
- package/dist/lib/executor-start/hooks.js +42 -0
- package/dist/lib/executor-start/job-dispatch.d.ts +9 -1
- package/dist/lib/executor-start/job-dispatch.js +67 -2
- package/dist/lib/remote-job-utils.js +54 -18
- package/dist/lib/shell.js +4 -2
- package/oclif.manifest.json +101 -101
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -2402,6 +2402,61 @@
|
|
|
2402
2402
|
"index.js"
|
|
2403
2403
|
]
|
|
2404
2404
|
},
|
|
2405
|
+
"flow:remove": {
|
|
2406
|
+
"aliases": [],
|
|
2407
|
+
"args": {
|
|
2408
|
+
"package": {
|
|
2409
|
+
"description": "Remove a previously added package.",
|
|
2410
|
+
"name": "package",
|
|
2411
|
+
"required": true
|
|
2412
|
+
}
|
|
2413
|
+
},
|
|
2414
|
+
"description": "Remove a package from the project in a git branch-based workspace",
|
|
2415
|
+
"examples": [
|
|
2416
|
+
"<%= config.bin %> <%= command.id %> cloudy/docker_postgres",
|
|
2417
|
+
"<%= config.bin %> <%= command.id %> cloudy/docker_postgres --profile staging"
|
|
2418
|
+
],
|
|
2419
|
+
"flags": {
|
|
2420
|
+
"chdir": {
|
|
2421
|
+
"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 ",
|
|
2422
|
+
"name": "chdir",
|
|
2423
|
+
"required": false,
|
|
2424
|
+
"hasDynamicHelp": false,
|
|
2425
|
+
"multiple": false,
|
|
2426
|
+
"type": "option"
|
|
2427
|
+
},
|
|
2428
|
+
"debug": {
|
|
2429
|
+
"description": "enable debug mode",
|
|
2430
|
+
"name": "debug",
|
|
2431
|
+
"allowNo": false,
|
|
2432
|
+
"type": "boolean"
|
|
2433
|
+
},
|
|
2434
|
+
"profile": {
|
|
2435
|
+
"description": "profile to use for the workspace (will be appended to workspace name)",
|
|
2436
|
+
"name": "profile",
|
|
2437
|
+
"required": false,
|
|
2438
|
+
"hasDynamicHelp": false,
|
|
2439
|
+
"multiple": false,
|
|
2440
|
+
"type": "option"
|
|
2441
|
+
}
|
|
2442
|
+
},
|
|
2443
|
+
"hasDynamicHelp": false,
|
|
2444
|
+
"hiddenAliases": [],
|
|
2445
|
+
"id": "flow:remove",
|
|
2446
|
+
"pluginAlias": "hereya-cli",
|
|
2447
|
+
"pluginName": "hereya-cli",
|
|
2448
|
+
"pluginType": "core",
|
|
2449
|
+
"strict": true,
|
|
2450
|
+
"enableJsonFlag": false,
|
|
2451
|
+
"isESM": true,
|
|
2452
|
+
"relativePath": [
|
|
2453
|
+
"dist",
|
|
2454
|
+
"commands",
|
|
2455
|
+
"flow",
|
|
2456
|
+
"remove",
|
|
2457
|
+
"index.js"
|
|
2458
|
+
]
|
|
2459
|
+
},
|
|
2405
2460
|
"flow:run": {
|
|
2406
2461
|
"aliases": [],
|
|
2407
2462
|
"args": {
|
|
@@ -2992,61 +3047,6 @@
|
|
|
2992
3047
|
"index.js"
|
|
2993
3048
|
]
|
|
2994
3049
|
},
|
|
2995
|
-
"flow:remove": {
|
|
2996
|
-
"aliases": [],
|
|
2997
|
-
"args": {
|
|
2998
|
-
"package": {
|
|
2999
|
-
"description": "Remove a previously added package.",
|
|
3000
|
-
"name": "package",
|
|
3001
|
-
"required": true
|
|
3002
|
-
}
|
|
3003
|
-
},
|
|
3004
|
-
"description": "Remove a package from the project in a git branch-based workspace",
|
|
3005
|
-
"examples": [
|
|
3006
|
-
"<%= config.bin %> <%= command.id %> cloudy/docker_postgres",
|
|
3007
|
-
"<%= config.bin %> <%= command.id %> cloudy/docker_postgres --profile staging"
|
|
3008
|
-
],
|
|
3009
|
-
"flags": {
|
|
3010
|
-
"chdir": {
|
|
3011
|
-
"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 ",
|
|
3012
|
-
"name": "chdir",
|
|
3013
|
-
"required": false,
|
|
3014
|
-
"hasDynamicHelp": false,
|
|
3015
|
-
"multiple": false,
|
|
3016
|
-
"type": "option"
|
|
3017
|
-
},
|
|
3018
|
-
"debug": {
|
|
3019
|
-
"description": "enable debug mode",
|
|
3020
|
-
"name": "debug",
|
|
3021
|
-
"allowNo": false,
|
|
3022
|
-
"type": "boolean"
|
|
3023
|
-
},
|
|
3024
|
-
"profile": {
|
|
3025
|
-
"description": "profile to use for the workspace (will be appended to workspace name)",
|
|
3026
|
-
"name": "profile",
|
|
3027
|
-
"required": false,
|
|
3028
|
-
"hasDynamicHelp": false,
|
|
3029
|
-
"multiple": false,
|
|
3030
|
-
"type": "option"
|
|
3031
|
-
}
|
|
3032
|
-
},
|
|
3033
|
-
"hasDynamicHelp": false,
|
|
3034
|
-
"hiddenAliases": [],
|
|
3035
|
-
"id": "flow:remove",
|
|
3036
|
-
"pluginAlias": "hereya-cli",
|
|
3037
|
-
"pluginName": "hereya-cli",
|
|
3038
|
-
"pluginType": "core",
|
|
3039
|
-
"strict": true,
|
|
3040
|
-
"enableJsonFlag": false,
|
|
3041
|
-
"isESM": true,
|
|
3042
|
-
"relativePath": [
|
|
3043
|
-
"dist",
|
|
3044
|
-
"commands",
|
|
3045
|
-
"flow",
|
|
3046
|
-
"remove",
|
|
3047
|
-
"index.js"
|
|
3048
|
-
]
|
|
3049
|
-
},
|
|
3050
3050
|
"devenv:project:init": {
|
|
3051
3051
|
"aliases": [],
|
|
3052
3052
|
"args": {
|
|
@@ -3314,6 +3314,51 @@
|
|
|
3314
3314
|
"index.js"
|
|
3315
3315
|
]
|
|
3316
3316
|
},
|
|
3317
|
+
"workspace:env:unset": {
|
|
3318
|
+
"aliases": [],
|
|
3319
|
+
"args": {},
|
|
3320
|
+
"description": "unset an env var for a workspace",
|
|
3321
|
+
"examples": [
|
|
3322
|
+
"<%= config.bin %> <%= command.id %> -w my-workspace -n myVar"
|
|
3323
|
+
],
|
|
3324
|
+
"flags": {
|
|
3325
|
+
"name": {
|
|
3326
|
+
"char": "n",
|
|
3327
|
+
"description": "name of the env var to unset",
|
|
3328
|
+
"name": "name",
|
|
3329
|
+
"required": true,
|
|
3330
|
+
"hasDynamicHelp": false,
|
|
3331
|
+
"multiple": false,
|
|
3332
|
+
"type": "option"
|
|
3333
|
+
},
|
|
3334
|
+
"workspace": {
|
|
3335
|
+
"char": "w",
|
|
3336
|
+
"description": "name of the workspace to unset an env var for",
|
|
3337
|
+
"name": "workspace",
|
|
3338
|
+
"required": true,
|
|
3339
|
+
"hasDynamicHelp": false,
|
|
3340
|
+
"multiple": false,
|
|
3341
|
+
"type": "option"
|
|
3342
|
+
}
|
|
3343
|
+
},
|
|
3344
|
+
"hasDynamicHelp": false,
|
|
3345
|
+
"hiddenAliases": [],
|
|
3346
|
+
"id": "workspace:env:unset",
|
|
3347
|
+
"pluginAlias": "hereya-cli",
|
|
3348
|
+
"pluginName": "hereya-cli",
|
|
3349
|
+
"pluginType": "core",
|
|
3350
|
+
"strict": true,
|
|
3351
|
+
"enableJsonFlag": false,
|
|
3352
|
+
"isESM": true,
|
|
3353
|
+
"relativePath": [
|
|
3354
|
+
"dist",
|
|
3355
|
+
"commands",
|
|
3356
|
+
"workspace",
|
|
3357
|
+
"env",
|
|
3358
|
+
"unset",
|
|
3359
|
+
"index.js"
|
|
3360
|
+
]
|
|
3361
|
+
},
|
|
3317
3362
|
"workspace:executor:install": {
|
|
3318
3363
|
"aliases": [],
|
|
3319
3364
|
"args": {},
|
|
@@ -3470,52 +3515,7 @@
|
|
|
3470
3515
|
"uninstall",
|
|
3471
3516
|
"index.js"
|
|
3472
3517
|
]
|
|
3473
|
-
},
|
|
3474
|
-
"workspace:env:unset": {
|
|
3475
|
-
"aliases": [],
|
|
3476
|
-
"args": {},
|
|
3477
|
-
"description": "unset an env var for a workspace",
|
|
3478
|
-
"examples": [
|
|
3479
|
-
"<%= config.bin %> <%= command.id %> -w my-workspace -n myVar"
|
|
3480
|
-
],
|
|
3481
|
-
"flags": {
|
|
3482
|
-
"name": {
|
|
3483
|
-
"char": "n",
|
|
3484
|
-
"description": "name of the env var to unset",
|
|
3485
|
-
"name": "name",
|
|
3486
|
-
"required": true,
|
|
3487
|
-
"hasDynamicHelp": false,
|
|
3488
|
-
"multiple": false,
|
|
3489
|
-
"type": "option"
|
|
3490
|
-
},
|
|
3491
|
-
"workspace": {
|
|
3492
|
-
"char": "w",
|
|
3493
|
-
"description": "name of the workspace to unset an env var for",
|
|
3494
|
-
"name": "workspace",
|
|
3495
|
-
"required": true,
|
|
3496
|
-
"hasDynamicHelp": false,
|
|
3497
|
-
"multiple": false,
|
|
3498
|
-
"type": "option"
|
|
3499
|
-
}
|
|
3500
|
-
},
|
|
3501
|
-
"hasDynamicHelp": false,
|
|
3502
|
-
"hiddenAliases": [],
|
|
3503
|
-
"id": "workspace:env:unset",
|
|
3504
|
-
"pluginAlias": "hereya-cli",
|
|
3505
|
-
"pluginName": "hereya-cli",
|
|
3506
|
-
"pluginType": "core",
|
|
3507
|
-
"strict": true,
|
|
3508
|
-
"enableJsonFlag": false,
|
|
3509
|
-
"isESM": true,
|
|
3510
|
-
"relativePath": [
|
|
3511
|
-
"dist",
|
|
3512
|
-
"commands",
|
|
3513
|
-
"workspace",
|
|
3514
|
-
"env",
|
|
3515
|
-
"unset",
|
|
3516
|
-
"index.js"
|
|
3517
|
-
]
|
|
3518
3518
|
}
|
|
3519
3519
|
},
|
|
3520
|
-
"version": "0.
|
|
3520
|
+
"version": "0.104.0"
|
|
3521
3521
|
}
|