hereya-cli 0.100.3 → 0.100.5
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 +66 -66
- package/bin/check-node.cjs +32 -0
- package/bin/dev.cjs +22 -0
- package/bin/dev.cmd +1 -1
- package/bin/run.cjs +14 -0
- package/bin/run.cmd +1 -1
- package/dist/executor/delegating.js +39 -1
- package/oclif.manifest.json +598 -598
- package/package.json +3 -3
- /package/bin/{dev.js → dev-impl.mjs} +0 -0
- /package/bin/{run.js → run.mjs} +0 -0
package/oclif.manifest.json
CHANGED
|
@@ -1096,64 +1096,6 @@
|
|
|
1096
1096
|
"index.js"
|
|
1097
1097
|
]
|
|
1098
1098
|
},
|
|
1099
|
-
"uninit": {
|
|
1100
|
-
"aliases": [],
|
|
1101
|
-
"args": {
|
|
1102
|
-
"project": {
|
|
1103
|
-
"description": "project name",
|
|
1104
|
-
"name": "project",
|
|
1105
|
-
"required": true
|
|
1106
|
-
}
|
|
1107
|
-
},
|
|
1108
|
-
"description": "Destroy template infrastructure and uninitialize a project.",
|
|
1109
|
-
"examples": [
|
|
1110
|
-
"<%= config.bin %> <%= command.id %> myProject -w dev",
|
|
1111
|
-
"<%= config.bin %> <%= command.id %> myProject -w dev -p prodWorkspace=prod"
|
|
1112
|
-
],
|
|
1113
|
-
"flags": {
|
|
1114
|
-
"chdir": {
|
|
1115
|
-
"description": "directory to run command in",
|
|
1116
|
-
"name": "chdir",
|
|
1117
|
-
"required": false,
|
|
1118
|
-
"hasDynamicHelp": false,
|
|
1119
|
-
"multiple": false,
|
|
1120
|
-
"type": "option"
|
|
1121
|
-
},
|
|
1122
|
-
"parameter": {
|
|
1123
|
-
"char": "p",
|
|
1124
|
-
"description": "parameter for the template, in the form of 'key=value'. Overrides saved parameters.",
|
|
1125
|
-
"name": "parameter",
|
|
1126
|
-
"default": [],
|
|
1127
|
-
"hasDynamicHelp": false,
|
|
1128
|
-
"multiple": true,
|
|
1129
|
-
"type": "option"
|
|
1130
|
-
},
|
|
1131
|
-
"workspace": {
|
|
1132
|
-
"char": "w",
|
|
1133
|
-
"description": "workspace used during init",
|
|
1134
|
-
"name": "workspace",
|
|
1135
|
-
"required": true,
|
|
1136
|
-
"hasDynamicHelp": false,
|
|
1137
|
-
"multiple": false,
|
|
1138
|
-
"type": "option"
|
|
1139
|
-
}
|
|
1140
|
-
},
|
|
1141
|
-
"hasDynamicHelp": false,
|
|
1142
|
-
"hiddenAliases": [],
|
|
1143
|
-
"id": "uninit",
|
|
1144
|
-
"pluginAlias": "hereya-cli",
|
|
1145
|
-
"pluginName": "hereya-cli",
|
|
1146
|
-
"pluginType": "core",
|
|
1147
|
-
"strict": true,
|
|
1148
|
-
"enableJsonFlag": false,
|
|
1149
|
-
"isESM": true,
|
|
1150
|
-
"relativePath": [
|
|
1151
|
-
"dist",
|
|
1152
|
-
"commands",
|
|
1153
|
-
"uninit",
|
|
1154
|
-
"index.js"
|
|
1155
|
-
]
|
|
1156
|
-
},
|
|
1157
1099
|
"up": {
|
|
1158
1100
|
"aliases": [],
|
|
1159
1101
|
"args": {},
|
|
@@ -1250,6 +1192,64 @@
|
|
|
1250
1192
|
"index.js"
|
|
1251
1193
|
]
|
|
1252
1194
|
},
|
|
1195
|
+
"uninit": {
|
|
1196
|
+
"aliases": [],
|
|
1197
|
+
"args": {
|
|
1198
|
+
"project": {
|
|
1199
|
+
"description": "project name",
|
|
1200
|
+
"name": "project",
|
|
1201
|
+
"required": true
|
|
1202
|
+
}
|
|
1203
|
+
},
|
|
1204
|
+
"description": "Destroy template infrastructure and uninitialize a project.",
|
|
1205
|
+
"examples": [
|
|
1206
|
+
"<%= config.bin %> <%= command.id %> myProject -w dev",
|
|
1207
|
+
"<%= config.bin %> <%= command.id %> myProject -w dev -p prodWorkspace=prod"
|
|
1208
|
+
],
|
|
1209
|
+
"flags": {
|
|
1210
|
+
"chdir": {
|
|
1211
|
+
"description": "directory to run command in",
|
|
1212
|
+
"name": "chdir",
|
|
1213
|
+
"required": false,
|
|
1214
|
+
"hasDynamicHelp": false,
|
|
1215
|
+
"multiple": false,
|
|
1216
|
+
"type": "option"
|
|
1217
|
+
},
|
|
1218
|
+
"parameter": {
|
|
1219
|
+
"char": "p",
|
|
1220
|
+
"description": "parameter for the template, in the form of 'key=value'. Overrides saved parameters.",
|
|
1221
|
+
"name": "parameter",
|
|
1222
|
+
"default": [],
|
|
1223
|
+
"hasDynamicHelp": false,
|
|
1224
|
+
"multiple": true,
|
|
1225
|
+
"type": "option"
|
|
1226
|
+
},
|
|
1227
|
+
"workspace": {
|
|
1228
|
+
"char": "w",
|
|
1229
|
+
"description": "workspace used during init",
|
|
1230
|
+
"name": "workspace",
|
|
1231
|
+
"required": true,
|
|
1232
|
+
"hasDynamicHelp": false,
|
|
1233
|
+
"multiple": false,
|
|
1234
|
+
"type": "option"
|
|
1235
|
+
}
|
|
1236
|
+
},
|
|
1237
|
+
"hasDynamicHelp": false,
|
|
1238
|
+
"hiddenAliases": [],
|
|
1239
|
+
"id": "uninit",
|
|
1240
|
+
"pluginAlias": "hereya-cli",
|
|
1241
|
+
"pluginName": "hereya-cli",
|
|
1242
|
+
"pluginType": "core",
|
|
1243
|
+
"strict": true,
|
|
1244
|
+
"enableJsonFlag": false,
|
|
1245
|
+
"isESM": true,
|
|
1246
|
+
"relativePath": [
|
|
1247
|
+
"dist",
|
|
1248
|
+
"commands",
|
|
1249
|
+
"uninit",
|
|
1250
|
+
"index.js"
|
|
1251
|
+
]
|
|
1252
|
+
},
|
|
1253
1253
|
"app:deploy": {
|
|
1254
1254
|
"aliases": [],
|
|
1255
1255
|
"args": {
|
|
@@ -1354,53 +1354,6 @@
|
|
|
1354
1354
|
"index.js"
|
|
1355
1355
|
]
|
|
1356
1356
|
},
|
|
1357
|
-
"app:env": {
|
|
1358
|
-
"aliases": [],
|
|
1359
|
-
"args": {
|
|
1360
|
-
"name": {
|
|
1361
|
-
"description": "app name in org/name format",
|
|
1362
|
-
"name": "name",
|
|
1363
|
-
"required": true
|
|
1364
|
-
},
|
|
1365
|
-
"key": {
|
|
1366
|
-
"description": "optional env var key to print (omit to print all)",
|
|
1367
|
-
"name": "key",
|
|
1368
|
-
"required": false
|
|
1369
|
-
}
|
|
1370
|
-
},
|
|
1371
|
-
"description": "Print environment variables exported by a hereya-app deployment.",
|
|
1372
|
-
"examples": [
|
|
1373
|
-
"<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace",
|
|
1374
|
-
"<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace DATABASE_URL"
|
|
1375
|
-
],
|
|
1376
|
-
"flags": {
|
|
1377
|
-
"workspace": {
|
|
1378
|
-
"char": "w",
|
|
1379
|
-
"description": "workspace to read env outputs from",
|
|
1380
|
-
"name": "workspace",
|
|
1381
|
-
"required": true,
|
|
1382
|
-
"hasDynamicHelp": false,
|
|
1383
|
-
"multiple": false,
|
|
1384
|
-
"type": "option"
|
|
1385
|
-
}
|
|
1386
|
-
},
|
|
1387
|
-
"hasDynamicHelp": false,
|
|
1388
|
-
"hiddenAliases": [],
|
|
1389
|
-
"id": "app:env",
|
|
1390
|
-
"pluginAlias": "hereya-cli",
|
|
1391
|
-
"pluginName": "hereya-cli",
|
|
1392
|
-
"pluginType": "core",
|
|
1393
|
-
"strict": true,
|
|
1394
|
-
"enableJsonFlag": false,
|
|
1395
|
-
"isESM": true,
|
|
1396
|
-
"relativePath": [
|
|
1397
|
-
"dist",
|
|
1398
|
-
"commands",
|
|
1399
|
-
"app",
|
|
1400
|
-
"env",
|
|
1401
|
-
"index.js"
|
|
1402
|
-
]
|
|
1403
|
-
},
|
|
1404
1357
|
"app:destroy": {
|
|
1405
1358
|
"aliases": [],
|
|
1406
1359
|
"args": {
|
|
@@ -1465,17 +1418,39 @@
|
|
|
1465
1418
|
"index.js"
|
|
1466
1419
|
]
|
|
1467
1420
|
},
|
|
1468
|
-
"app:
|
|
1421
|
+
"app:env": {
|
|
1469
1422
|
"aliases": [],
|
|
1470
|
-
"args": {
|
|
1471
|
-
|
|
1423
|
+
"args": {
|
|
1424
|
+
"name": {
|
|
1425
|
+
"description": "app name in org/name format",
|
|
1426
|
+
"name": "name",
|
|
1427
|
+
"required": true
|
|
1428
|
+
},
|
|
1429
|
+
"key": {
|
|
1430
|
+
"description": "optional env var key to print (omit to print all)",
|
|
1431
|
+
"name": "key",
|
|
1432
|
+
"required": false
|
|
1433
|
+
}
|
|
1434
|
+
},
|
|
1435
|
+
"description": "Print environment variables exported by a hereya-app deployment.",
|
|
1472
1436
|
"examples": [
|
|
1473
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1437
|
+
"<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace",
|
|
1438
|
+
"<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace DATABASE_URL"
|
|
1474
1439
|
],
|
|
1475
|
-
"flags": {
|
|
1440
|
+
"flags": {
|
|
1441
|
+
"workspace": {
|
|
1442
|
+
"char": "w",
|
|
1443
|
+
"description": "workspace to read env outputs from",
|
|
1444
|
+
"name": "workspace",
|
|
1445
|
+
"required": true,
|
|
1446
|
+
"hasDynamicHelp": false,
|
|
1447
|
+
"multiple": false,
|
|
1448
|
+
"type": "option"
|
|
1449
|
+
}
|
|
1450
|
+
},
|
|
1476
1451
|
"hasDynamicHelp": false,
|
|
1477
1452
|
"hiddenAliases": [],
|
|
1478
|
-
"id": "app:
|
|
1453
|
+
"id": "app:env",
|
|
1479
1454
|
"pluginAlias": "hereya-cli",
|
|
1480
1455
|
"pluginName": "hereya-cli",
|
|
1481
1456
|
"pluginType": "core",
|
|
@@ -1486,37 +1461,21 @@
|
|
|
1486
1461
|
"dist",
|
|
1487
1462
|
"commands",
|
|
1488
1463
|
"app",
|
|
1489
|
-
"
|
|
1464
|
+
"env",
|
|
1490
1465
|
"index.js"
|
|
1491
1466
|
]
|
|
1492
1467
|
},
|
|
1493
|
-
"app:
|
|
1468
|
+
"app:list": {
|
|
1494
1469
|
"aliases": [],
|
|
1495
|
-
"args": {
|
|
1496
|
-
|
|
1497
|
-
"description": "app name in org/name format",
|
|
1498
|
-
"name": "name",
|
|
1499
|
-
"required": true
|
|
1500
|
-
}
|
|
1501
|
-
},
|
|
1502
|
-
"description": "Show the deployment status of a hereya-app on a workspace.",
|
|
1470
|
+
"args": {},
|
|
1471
|
+
"description": "List hereya-apps available to your account.",
|
|
1503
1472
|
"examples": [
|
|
1504
|
-
"<%= config.bin %> <%= command.id %>
|
|
1473
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1505
1474
|
],
|
|
1506
|
-
"flags": {
|
|
1507
|
-
"workspace": {
|
|
1508
|
-
"char": "w",
|
|
1509
|
-
"description": "workspace to read deployment status from",
|
|
1510
|
-
"name": "workspace",
|
|
1511
|
-
"required": true,
|
|
1512
|
-
"hasDynamicHelp": false,
|
|
1513
|
-
"multiple": false,
|
|
1514
|
-
"type": "option"
|
|
1515
|
-
}
|
|
1516
|
-
},
|
|
1475
|
+
"flags": {},
|
|
1517
1476
|
"hasDynamicHelp": false,
|
|
1518
1477
|
"hiddenAliases": [],
|
|
1519
|
-
"id": "app:
|
|
1478
|
+
"id": "app:list",
|
|
1520
1479
|
"pluginAlias": "hereya-cli",
|
|
1521
1480
|
"pluginName": "hereya-cli",
|
|
1522
1481
|
"pluginType": "core",
|
|
@@ -1527,7 +1486,7 @@
|
|
|
1527
1486
|
"dist",
|
|
1528
1487
|
"commands",
|
|
1529
1488
|
"app",
|
|
1530
|
-
"
|
|
1489
|
+
"list",
|
|
1531
1490
|
"index.js"
|
|
1532
1491
|
]
|
|
1533
1492
|
},
|
|
@@ -1581,21 +1540,62 @@
|
|
|
1581
1540
|
"index.js"
|
|
1582
1541
|
]
|
|
1583
1542
|
},
|
|
1584
|
-
"
|
|
1543
|
+
"app:status": {
|
|
1585
1544
|
"aliases": [],
|
|
1586
1545
|
"args": {
|
|
1587
|
-
"
|
|
1588
|
-
"description": "
|
|
1589
|
-
"name": "
|
|
1590
|
-
"required":
|
|
1546
|
+
"name": {
|
|
1547
|
+
"description": "app name in org/name format",
|
|
1548
|
+
"name": "name",
|
|
1549
|
+
"required": true
|
|
1591
1550
|
}
|
|
1592
1551
|
},
|
|
1593
|
-
"description": "
|
|
1552
|
+
"description": "Show the deployment status of a hereya-app on a workspace.",
|
|
1594
1553
|
"examples": [
|
|
1595
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1596
|
-
"<%= config.bin %> <%= command.id %> ./path/to/export.json"
|
|
1554
|
+
"<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace"
|
|
1597
1555
|
],
|
|
1598
|
-
"flags": {
|
|
1556
|
+
"flags": {
|
|
1557
|
+
"workspace": {
|
|
1558
|
+
"char": "w",
|
|
1559
|
+
"description": "workspace to read deployment status from",
|
|
1560
|
+
"name": "workspace",
|
|
1561
|
+
"required": true,
|
|
1562
|
+
"hasDynamicHelp": false,
|
|
1563
|
+
"multiple": false,
|
|
1564
|
+
"type": "option"
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
"hasDynamicHelp": false,
|
|
1568
|
+
"hiddenAliases": [],
|
|
1569
|
+
"id": "app:status",
|
|
1570
|
+
"pluginAlias": "hereya-cli",
|
|
1571
|
+
"pluginName": "hereya-cli",
|
|
1572
|
+
"pluginType": "core",
|
|
1573
|
+
"strict": true,
|
|
1574
|
+
"enableJsonFlag": false,
|
|
1575
|
+
"isESM": true,
|
|
1576
|
+
"relativePath": [
|
|
1577
|
+
"dist",
|
|
1578
|
+
"commands",
|
|
1579
|
+
"app",
|
|
1580
|
+
"status",
|
|
1581
|
+
"index.js"
|
|
1582
|
+
]
|
|
1583
|
+
},
|
|
1584
|
+
"config:export-backend": {
|
|
1585
|
+
"aliases": [],
|
|
1586
|
+
"args": {
|
|
1587
|
+
"file": {
|
|
1588
|
+
"description": "Path to save the export file. Defaults to cloud-backend.json in current directory",
|
|
1589
|
+
"name": "file",
|
|
1590
|
+
"required": false
|
|
1591
|
+
}
|
|
1592
|
+
},
|
|
1593
|
+
"description": "Export the cloud backend configuration to a file",
|
|
1594
|
+
"examples": [
|
|
1595
|
+
"<%= config.bin %> <%= command.id %>",
|
|
1596
|
+
"<%= config.bin %> <%= command.id %> ./path/to/export.json"
|
|
1597
|
+
],
|
|
1598
|
+
"flags": {},
|
|
1599
1599
|
"hasDynamicHelp": false,
|
|
1600
1600
|
"hiddenAliases": [],
|
|
1601
1601
|
"id": "config:export-backend",
|
|
@@ -1701,243 +1701,46 @@
|
|
|
1701
1701
|
"index.js"
|
|
1702
1702
|
]
|
|
1703
1703
|
},
|
|
1704
|
-
"
|
|
1704
|
+
"docker:run": {
|
|
1705
1705
|
"aliases": [],
|
|
1706
|
-
"args": {
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
"flags": {
|
|
1712
|
-
"workspace": {
|
|
1713
|
-
"char": "w",
|
|
1714
|
-
"description": "name of the workspace to configure SSH for",
|
|
1715
|
-
"name": "workspace",
|
|
1716
|
-
"required": true,
|
|
1717
|
-
"hasDynamicHelp": false,
|
|
1718
|
-
"multiple": false,
|
|
1719
|
-
"type": "option"
|
|
1706
|
+
"args": {
|
|
1707
|
+
"image": {
|
|
1708
|
+
"description": "Docker image to run",
|
|
1709
|
+
"name": "image",
|
|
1710
|
+
"required": true
|
|
1720
1711
|
}
|
|
1721
1712
|
},
|
|
1722
|
-
"
|
|
1723
|
-
"hiddenAliases": [],
|
|
1724
|
-
"id": "devenv:config",
|
|
1725
|
-
"pluginAlias": "hereya-cli",
|
|
1726
|
-
"pluginName": "hereya-cli",
|
|
1727
|
-
"pluginType": "core",
|
|
1728
|
-
"strict": true,
|
|
1729
|
-
"enableJsonFlag": false,
|
|
1730
|
-
"isESM": true,
|
|
1731
|
-
"relativePath": [
|
|
1732
|
-
"dist",
|
|
1733
|
-
"commands",
|
|
1734
|
-
"devenv",
|
|
1735
|
-
"config",
|
|
1736
|
-
"index.js"
|
|
1737
|
-
]
|
|
1738
|
-
},
|
|
1739
|
-
"devenv:install": {
|
|
1740
|
-
"aliases": [],
|
|
1741
|
-
"args": {},
|
|
1742
|
-
"description": "Provision a remote dev environment on a workspace.",
|
|
1713
|
+
"description": "Run a Docker container with hereya env vars injected as -e flags.",
|
|
1743
1714
|
"examples": [
|
|
1744
|
-
"<%= config.bin %> <%= command.id %>
|
|
1715
|
+
"<%= config.bin %> <%= command.id %> myapp:latest",
|
|
1716
|
+
"<%= config.bin %> <%= command.id %> -w staging myapp:latest",
|
|
1717
|
+
"<%= config.bin %> <%= command.id %> -p 3000 myapp:latest",
|
|
1718
|
+
"<%= config.bin %> <%= command.id %> myapp:latest -- --rm -v ./data:/data"
|
|
1745
1719
|
],
|
|
1746
1720
|
"flags": {
|
|
1747
|
-
"
|
|
1748
|
-
"description": "
|
|
1749
|
-
"name": "
|
|
1750
|
-
"allowNo": false,
|
|
1751
|
-
"type": "boolean"
|
|
1752
|
-
},
|
|
1753
|
-
"on-behalf-of": {
|
|
1754
|
-
"description": "email of an org member to install the devenv for; the baked Hereya token will carry their identity (requires OWNER or ADMIN role)",
|
|
1755
|
-
"name": "on-behalf-of",
|
|
1721
|
+
"chdir": {
|
|
1722
|
+
"description": "directory to run command in",
|
|
1723
|
+
"name": "chdir",
|
|
1756
1724
|
"required": false,
|
|
1757
1725
|
"hasDynamicHelp": false,
|
|
1758
1726
|
"multiple": false,
|
|
1759
1727
|
"type": "option"
|
|
1760
1728
|
},
|
|
1761
|
-
"
|
|
1729
|
+
"port": {
|
|
1762
1730
|
"char": "p",
|
|
1763
|
-
"description": "
|
|
1764
|
-
"name": "
|
|
1765
|
-
"
|
|
1766
|
-
"
|
|
1767
|
-
"multiple": true,
|
|
1768
|
-
"type": "option"
|
|
1769
|
-
},
|
|
1770
|
-
"parameter-file": {
|
|
1771
|
-
"char": "f",
|
|
1772
|
-
"description": "path to a file containing parameters for the package",
|
|
1773
|
-
"name": "parameter-file",
|
|
1774
|
-
"hasDynamicHelp": false,
|
|
1775
|
-
"multiple": false,
|
|
1776
|
-
"type": "option"
|
|
1777
|
-
},
|
|
1778
|
-
"version": {
|
|
1779
|
-
"char": "v",
|
|
1780
|
-
"description": "version of the dev environment package",
|
|
1781
|
-
"name": "version",
|
|
1782
|
-
"hasDynamicHelp": false,
|
|
1783
|
-
"multiple": false,
|
|
1784
|
-
"type": "option"
|
|
1785
|
-
},
|
|
1786
|
-
"workspace": {
|
|
1787
|
-
"char": "w",
|
|
1788
|
-
"description": "name of the workspace to provision the dev environment on",
|
|
1789
|
-
"name": "workspace",
|
|
1790
|
-
"required": true,
|
|
1791
|
-
"hasDynamicHelp": false,
|
|
1792
|
-
"multiple": false,
|
|
1793
|
-
"type": "option"
|
|
1794
|
-
}
|
|
1795
|
-
},
|
|
1796
|
-
"hasDynamicHelp": false,
|
|
1797
|
-
"hiddenAliases": [],
|
|
1798
|
-
"id": "devenv:install",
|
|
1799
|
-
"pluginAlias": "hereya-cli",
|
|
1800
|
-
"pluginName": "hereya-cli",
|
|
1801
|
-
"pluginType": "core",
|
|
1802
|
-
"strict": true,
|
|
1803
|
-
"enableJsonFlag": false,
|
|
1804
|
-
"isESM": true,
|
|
1805
|
-
"relativePath": [
|
|
1806
|
-
"dist",
|
|
1807
|
-
"commands",
|
|
1808
|
-
"devenv",
|
|
1809
|
-
"install",
|
|
1810
|
-
"index.js"
|
|
1811
|
-
]
|
|
1812
|
-
},
|
|
1813
|
-
"devenv:sleep": {
|
|
1814
|
-
"aliases": [],
|
|
1815
|
-
"args": {},
|
|
1816
|
-
"description": "Stop the dev environment instance for a workspace (lifecycle=on-demand only).",
|
|
1817
|
-
"examples": [
|
|
1818
|
-
"<%= config.bin %> <%= command.id %> -w my-workspace"
|
|
1819
|
-
],
|
|
1820
|
-
"flags": {
|
|
1821
|
-
"debug": {
|
|
1822
|
-
"description": "enable debug mode",
|
|
1823
|
-
"name": "debug",
|
|
1824
|
-
"allowNo": false,
|
|
1825
|
-
"type": "boolean"
|
|
1826
|
-
},
|
|
1827
|
-
"workspace": {
|
|
1828
|
-
"char": "w",
|
|
1829
|
-
"description": "name of the workspace whose dev environment should be stopped",
|
|
1830
|
-
"name": "workspace",
|
|
1831
|
-
"required": true,
|
|
1832
|
-
"hasDynamicHelp": false,
|
|
1833
|
-
"multiple": false,
|
|
1834
|
-
"type": "option"
|
|
1835
|
-
}
|
|
1836
|
-
},
|
|
1837
|
-
"hasDynamicHelp": false,
|
|
1838
|
-
"hiddenAliases": [],
|
|
1839
|
-
"id": "devenv:sleep",
|
|
1840
|
-
"pluginAlias": "hereya-cli",
|
|
1841
|
-
"pluginName": "hereya-cli",
|
|
1842
|
-
"pluginType": "core",
|
|
1843
|
-
"strict": true,
|
|
1844
|
-
"enableJsonFlag": false,
|
|
1845
|
-
"isESM": true,
|
|
1846
|
-
"relativePath": [
|
|
1847
|
-
"dist",
|
|
1848
|
-
"commands",
|
|
1849
|
-
"devenv",
|
|
1850
|
-
"sleep",
|
|
1851
|
-
"index.js"
|
|
1852
|
-
]
|
|
1853
|
-
},
|
|
1854
|
-
"devenv:ssh": {
|
|
1855
|
-
"aliases": [],
|
|
1856
|
-
"args": {},
|
|
1857
|
-
"description": "SSH into a dev environment instance.",
|
|
1858
|
-
"examples": [
|
|
1859
|
-
"<%= config.bin %> <%= command.id %> -w my-workspace"
|
|
1860
|
-
],
|
|
1861
|
-
"flags": {
|
|
1862
|
-
"workspace": {
|
|
1863
|
-
"char": "w",
|
|
1864
|
-
"description": "name of the workspace to SSH into",
|
|
1865
|
-
"name": "workspace",
|
|
1866
|
-
"required": true,
|
|
1867
|
-
"hasDynamicHelp": false,
|
|
1868
|
-
"multiple": false,
|
|
1869
|
-
"type": "option"
|
|
1870
|
-
}
|
|
1871
|
-
},
|
|
1872
|
-
"hasDynamicHelp": false,
|
|
1873
|
-
"hiddenAliases": [],
|
|
1874
|
-
"id": "devenv:ssh",
|
|
1875
|
-
"pluginAlias": "hereya-cli",
|
|
1876
|
-
"pluginName": "hereya-cli",
|
|
1877
|
-
"pluginType": "core",
|
|
1878
|
-
"strict": true,
|
|
1879
|
-
"enableJsonFlag": false,
|
|
1880
|
-
"isESM": true,
|
|
1881
|
-
"relativePath": [
|
|
1882
|
-
"dist",
|
|
1883
|
-
"commands",
|
|
1884
|
-
"devenv",
|
|
1885
|
-
"ssh",
|
|
1886
|
-
"index.js"
|
|
1887
|
-
]
|
|
1888
|
-
},
|
|
1889
|
-
"devenv:ssh-proxy": {
|
|
1890
|
-
"aliases": [],
|
|
1891
|
-
"args": {},
|
|
1892
|
-
"description": "Internal: SSH ProxyCommand for on-demand devenvs (wake + connect).",
|
|
1893
|
-
"flags": {
|
|
1894
|
-
"workspace": {
|
|
1895
|
-
"char": "w",
|
|
1896
|
-
"description": "name of the workspace to proxy SSH for",
|
|
1897
|
-
"name": "workspace",
|
|
1898
|
-
"required": true,
|
|
1731
|
+
"description": "port to forward and set as PORT env var (default: 8080)",
|
|
1732
|
+
"name": "port",
|
|
1733
|
+
"required": false,
|
|
1734
|
+
"default": 8080,
|
|
1899
1735
|
"hasDynamicHelp": false,
|
|
1900
1736
|
"multiple": false,
|
|
1901
1737
|
"type": "option"
|
|
1902
|
-
}
|
|
1903
|
-
},
|
|
1904
|
-
"hasDynamicHelp": false,
|
|
1905
|
-
"hidden": true,
|
|
1906
|
-
"hiddenAliases": [],
|
|
1907
|
-
"id": "devenv:ssh-proxy",
|
|
1908
|
-
"pluginAlias": "hereya-cli",
|
|
1909
|
-
"pluginName": "hereya-cli",
|
|
1910
|
-
"pluginType": "core",
|
|
1911
|
-
"strict": true,
|
|
1912
|
-
"enableJsonFlag": false,
|
|
1913
|
-
"isESM": true,
|
|
1914
|
-
"relativePath": [
|
|
1915
|
-
"dist",
|
|
1916
|
-
"commands",
|
|
1917
|
-
"devenv",
|
|
1918
|
-
"ssh-proxy",
|
|
1919
|
-
"index.js"
|
|
1920
|
-
]
|
|
1921
|
-
},
|
|
1922
|
-
"devenv:uninstall": {
|
|
1923
|
-
"aliases": [],
|
|
1924
|
-
"args": {},
|
|
1925
|
-
"description": "Destroy and remove the dev environment from a workspace.",
|
|
1926
|
-
"examples": [
|
|
1927
|
-
"<%= config.bin %> <%= command.id %> -w my-workspace"
|
|
1928
|
-
],
|
|
1929
|
-
"flags": {
|
|
1930
|
-
"debug": {
|
|
1931
|
-
"description": "enable debug mode",
|
|
1932
|
-
"name": "debug",
|
|
1933
|
-
"allowNo": false,
|
|
1934
|
-
"type": "boolean"
|
|
1935
1738
|
},
|
|
1936
1739
|
"workspace": {
|
|
1937
1740
|
"char": "w",
|
|
1938
|
-
"description": "name of the workspace to
|
|
1741
|
+
"description": "name of the workspace to use",
|
|
1939
1742
|
"name": "workspace",
|
|
1940
|
-
"required":
|
|
1743
|
+
"required": false,
|
|
1941
1744
|
"hasDynamicHelp": false,
|
|
1942
1745
|
"multiple": false,
|
|
1943
1746
|
"type": "option"
|
|
@@ -1945,18 +1748,18 @@
|
|
|
1945
1748
|
},
|
|
1946
1749
|
"hasDynamicHelp": false,
|
|
1947
1750
|
"hiddenAliases": [],
|
|
1948
|
-
"id": "
|
|
1751
|
+
"id": "docker:run",
|
|
1949
1752
|
"pluginAlias": "hereya-cli",
|
|
1950
1753
|
"pluginName": "hereya-cli",
|
|
1951
1754
|
"pluginType": "core",
|
|
1952
|
-
"strict":
|
|
1755
|
+
"strict": false,
|
|
1953
1756
|
"enableJsonFlag": false,
|
|
1954
1757
|
"isESM": true,
|
|
1955
1758
|
"relativePath": [
|
|
1956
1759
|
"dist",
|
|
1957
1760
|
"commands",
|
|
1958
|
-
"
|
|
1959
|
-
"
|
|
1761
|
+
"docker",
|
|
1762
|
+
"run",
|
|
1960
1763
|
"index.js"
|
|
1961
1764
|
]
|
|
1962
1765
|
},
|
|
@@ -2018,45 +1821,48 @@
|
|
|
2018
1821
|
"index.js"
|
|
2019
1822
|
]
|
|
2020
1823
|
},
|
|
2021
|
-
"
|
|
1824
|
+
"flow:add": {
|
|
2022
1825
|
"aliases": [],
|
|
2023
1826
|
"args": {
|
|
2024
|
-
"
|
|
2025
|
-
"description": "
|
|
2026
|
-
"name": "
|
|
1827
|
+
"package": {
|
|
1828
|
+
"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 ",
|
|
1829
|
+
"name": "package",
|
|
2027
1830
|
"required": true
|
|
2028
1831
|
}
|
|
2029
1832
|
},
|
|
2030
|
-
"description": "
|
|
1833
|
+
"description": "Add a package to the project in a git branch-based workspace",
|
|
2031
1834
|
"examples": [
|
|
2032
|
-
"<%= config.bin %> <%= command.id %>
|
|
2033
|
-
"<%= config.bin %> <%= command.id %>
|
|
2034
|
-
"<%= config.bin %> <%= command.id %> -p
|
|
2035
|
-
"<%= config.bin %> <%= command.id %> myapp:latest -- --rm -v ./data:/data"
|
|
1835
|
+
"<%= config.bin %> <%= command.id %> cloudy/docker_postgres",
|
|
1836
|
+
"<%= config.bin %> <%= command.id %> cloudy/docker_postgres --profile staging",
|
|
1837
|
+
"<%= config.bin %> <%= command.id %> cloudy/docker_postgres -p DB_NAME=mydb -p DB_USER=admin"
|
|
2036
1838
|
],
|
|
2037
1839
|
"flags": {
|
|
2038
1840
|
"chdir": {
|
|
2039
|
-
"description": "
|
|
1841
|
+
"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 ",
|
|
2040
1842
|
"name": "chdir",
|
|
2041
1843
|
"required": false,
|
|
2042
1844
|
"hasDynamicHelp": false,
|
|
2043
1845
|
"multiple": false,
|
|
2044
1846
|
"type": "option"
|
|
2045
1847
|
},
|
|
2046
|
-
"
|
|
1848
|
+
"debug": {
|
|
1849
|
+
"description": "enable debug mode",
|
|
1850
|
+
"name": "debug",
|
|
1851
|
+
"allowNo": false,
|
|
1852
|
+
"type": "boolean"
|
|
1853
|
+
},
|
|
1854
|
+
"parameter": {
|
|
2047
1855
|
"char": "p",
|
|
2048
|
-
"description": "
|
|
2049
|
-
"name": "
|
|
2050
|
-
"
|
|
2051
|
-
"default": 8080,
|
|
1856
|
+
"description": "parameter for the package, in the form of 'key=value'. Can be specified multiple times.",
|
|
1857
|
+
"name": "parameter",
|
|
1858
|
+
"default": [],
|
|
2052
1859
|
"hasDynamicHelp": false,
|
|
2053
|
-
"multiple":
|
|
1860
|
+
"multiple": true,
|
|
2054
1861
|
"type": "option"
|
|
2055
1862
|
},
|
|
2056
|
-
"
|
|
2057
|
-
"
|
|
2058
|
-
"
|
|
2059
|
-
"name": "workspace",
|
|
1863
|
+
"profile": {
|
|
1864
|
+
"description": "profile to use for the workspace (will be appended to workspace name)",
|
|
1865
|
+
"name": "profile",
|
|
2060
1866
|
"required": false,
|
|
2061
1867
|
"hasDynamicHelp": false,
|
|
2062
1868
|
"multiple": false,
|
|
@@ -2065,18 +1871,18 @@
|
|
|
2065
1871
|
},
|
|
2066
1872
|
"hasDynamicHelp": false,
|
|
2067
1873
|
"hiddenAliases": [],
|
|
2068
|
-
"id": "
|
|
1874
|
+
"id": "flow:add",
|
|
2069
1875
|
"pluginAlias": "hereya-cli",
|
|
2070
1876
|
"pluginName": "hereya-cli",
|
|
2071
1877
|
"pluginType": "core",
|
|
2072
|
-
"strict":
|
|
1878
|
+
"strict": true,
|
|
2073
1879
|
"enableJsonFlag": false,
|
|
2074
1880
|
"isESM": true,
|
|
2075
1881
|
"relativePath": [
|
|
2076
1882
|
"dist",
|
|
2077
1883
|
"commands",
|
|
2078
|
-
"
|
|
2079
|
-
"
|
|
1884
|
+
"flow",
|
|
1885
|
+
"add",
|
|
2080
1886
|
"index.js"
|
|
2081
1887
|
]
|
|
2082
1888
|
},
|
|
@@ -2138,71 +1944,6 @@
|
|
|
2138
1944
|
"index.js"
|
|
2139
1945
|
]
|
|
2140
1946
|
},
|
|
2141
|
-
"flow:add": {
|
|
2142
|
-
"aliases": [],
|
|
2143
|
-
"args": {
|
|
2144
|
-
"package": {
|
|
2145
|
-
"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 ",
|
|
2146
|
-
"name": "package",
|
|
2147
|
-
"required": true
|
|
2148
|
-
}
|
|
2149
|
-
},
|
|
2150
|
-
"description": "Add a package to the project in a git branch-based workspace",
|
|
2151
|
-
"examples": [
|
|
2152
|
-
"<%= config.bin %> <%= command.id %> cloudy/docker_postgres",
|
|
2153
|
-
"<%= config.bin %> <%= command.id %> cloudy/docker_postgres --profile staging",
|
|
2154
|
-
"<%= config.bin %> <%= command.id %> cloudy/docker_postgres -p DB_NAME=mydb -p DB_USER=admin"
|
|
2155
|
-
],
|
|
2156
|
-
"flags": {
|
|
2157
|
-
"chdir": {
|
|
2158
|
-
"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 ",
|
|
2159
|
-
"name": "chdir",
|
|
2160
|
-
"required": false,
|
|
2161
|
-
"hasDynamicHelp": false,
|
|
2162
|
-
"multiple": false,
|
|
2163
|
-
"type": "option"
|
|
2164
|
-
},
|
|
2165
|
-
"debug": {
|
|
2166
|
-
"description": "enable debug mode",
|
|
2167
|
-
"name": "debug",
|
|
2168
|
-
"allowNo": false,
|
|
2169
|
-
"type": "boolean"
|
|
2170
|
-
},
|
|
2171
|
-
"parameter": {
|
|
2172
|
-
"char": "p",
|
|
2173
|
-
"description": "parameter for the package, in the form of 'key=value'. Can be specified multiple times.",
|
|
2174
|
-
"name": "parameter",
|
|
2175
|
-
"default": [],
|
|
2176
|
-
"hasDynamicHelp": false,
|
|
2177
|
-
"multiple": true,
|
|
2178
|
-
"type": "option"
|
|
2179
|
-
},
|
|
2180
|
-
"profile": {
|
|
2181
|
-
"description": "profile to use for the workspace (will be appended to workspace name)",
|
|
2182
|
-
"name": "profile",
|
|
2183
|
-
"required": false,
|
|
2184
|
-
"hasDynamicHelp": false,
|
|
2185
|
-
"multiple": false,
|
|
2186
|
-
"type": "option"
|
|
2187
|
-
}
|
|
2188
|
-
},
|
|
2189
|
-
"hasDynamicHelp": false,
|
|
2190
|
-
"hiddenAliases": [],
|
|
2191
|
-
"id": "flow:add",
|
|
2192
|
-
"pluginAlias": "hereya-cli",
|
|
2193
|
-
"pluginName": "hereya-cli",
|
|
2194
|
-
"pluginType": "core",
|
|
2195
|
-
"strict": true,
|
|
2196
|
-
"enableJsonFlag": false,
|
|
2197
|
-
"isESM": true,
|
|
2198
|
-
"relativePath": [
|
|
2199
|
-
"dist",
|
|
2200
|
-
"commands",
|
|
2201
|
-
"flow",
|
|
2202
|
-
"add",
|
|
2203
|
-
"index.js"
|
|
2204
|
-
]
|
|
2205
|
-
},
|
|
2206
1947
|
"flow:down": {
|
|
2207
1948
|
"aliases": [],
|
|
2208
1949
|
"args": {},
|
|
@@ -2583,39 +2324,8 @@
|
|
|
2583
2324
|
"relativePath": [
|
|
2584
2325
|
"dist",
|
|
2585
2326
|
"commands",
|
|
2586
|
-
"flow",
|
|
2587
|
-
"up",
|
|
2588
|
-
"index.js"
|
|
2589
|
-
]
|
|
2590
|
-
},
|
|
2591
|
-
"workspace:delete": {
|
|
2592
|
-
"aliases": [],
|
|
2593
|
-
"args": {
|
|
2594
|
-
"name": {
|
|
2595
|
-
"description": "name of the workspace to delete",
|
|
2596
|
-
"name": "name",
|
|
2597
|
-
"required": true
|
|
2598
|
-
}
|
|
2599
|
-
},
|
|
2600
|
-
"description": "Delete a workspace if it exists.",
|
|
2601
|
-
"examples": [
|
|
2602
|
-
"<%= config.bin %> <%= command.id %> dev"
|
|
2603
|
-
],
|
|
2604
|
-
"flags": {},
|
|
2605
|
-
"hasDynamicHelp": false,
|
|
2606
|
-
"hiddenAliases": [],
|
|
2607
|
-
"id": "workspace:delete",
|
|
2608
|
-
"pluginAlias": "hereya-cli",
|
|
2609
|
-
"pluginName": "hereya-cli",
|
|
2610
|
-
"pluginType": "core",
|
|
2611
|
-
"strict": true,
|
|
2612
|
-
"enableJsonFlag": false,
|
|
2613
|
-
"isESM": true,
|
|
2614
|
-
"relativePath": [
|
|
2615
|
-
"dist",
|
|
2616
|
-
"commands",
|
|
2617
|
-
"workspace",
|
|
2618
|
-
"delete",
|
|
2327
|
+
"flow",
|
|
2328
|
+
"up",
|
|
2619
2329
|
"index.js"
|
|
2620
2330
|
]
|
|
2621
2331
|
},
|
|
@@ -2725,6 +2435,37 @@
|
|
|
2725
2435
|
"index.js"
|
|
2726
2436
|
]
|
|
2727
2437
|
},
|
|
2438
|
+
"workspace:delete": {
|
|
2439
|
+
"aliases": [],
|
|
2440
|
+
"args": {
|
|
2441
|
+
"name": {
|
|
2442
|
+
"description": "name of the workspace to delete",
|
|
2443
|
+
"name": "name",
|
|
2444
|
+
"required": true
|
|
2445
|
+
}
|
|
2446
|
+
},
|
|
2447
|
+
"description": "Delete a workspace if it exists.",
|
|
2448
|
+
"examples": [
|
|
2449
|
+
"<%= config.bin %> <%= command.id %> dev"
|
|
2450
|
+
],
|
|
2451
|
+
"flags": {},
|
|
2452
|
+
"hasDynamicHelp": false,
|
|
2453
|
+
"hiddenAliases": [],
|
|
2454
|
+
"id": "workspace:delete",
|
|
2455
|
+
"pluginAlias": "hereya-cli",
|
|
2456
|
+
"pluginName": "hereya-cli",
|
|
2457
|
+
"pluginType": "core",
|
|
2458
|
+
"strict": true,
|
|
2459
|
+
"enableJsonFlag": false,
|
|
2460
|
+
"isESM": true,
|
|
2461
|
+
"relativePath": [
|
|
2462
|
+
"dist",
|
|
2463
|
+
"commands",
|
|
2464
|
+
"workspace",
|
|
2465
|
+
"delete",
|
|
2466
|
+
"index.js"
|
|
2467
|
+
]
|
|
2468
|
+
},
|
|
2728
2469
|
"workspace:install": {
|
|
2729
2470
|
"aliases": [],
|
|
2730
2471
|
"args": {
|
|
@@ -2789,6 +2530,43 @@
|
|
|
2789
2530
|
"index.js"
|
|
2790
2531
|
]
|
|
2791
2532
|
},
|
|
2533
|
+
"workspace:list": {
|
|
2534
|
+
"aliases": [],
|
|
2535
|
+
"args": {},
|
|
2536
|
+
"description": "List workspaces.",
|
|
2537
|
+
"examples": [
|
|
2538
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2539
|
+
"<%= config.bin %> <%= command.id %> --org my-org",
|
|
2540
|
+
"<%= config.bin %> <%= command.id %> --org personal"
|
|
2541
|
+
],
|
|
2542
|
+
"flags": {
|
|
2543
|
+
"org": {
|
|
2544
|
+
"char": "o",
|
|
2545
|
+
"description": "Filter workspaces by organization name. Use \"personal\" to show only your personal workspaces.",
|
|
2546
|
+
"name": "org",
|
|
2547
|
+
"required": false,
|
|
2548
|
+
"hasDynamicHelp": false,
|
|
2549
|
+
"multiple": false,
|
|
2550
|
+
"type": "option"
|
|
2551
|
+
}
|
|
2552
|
+
},
|
|
2553
|
+
"hasDynamicHelp": false,
|
|
2554
|
+
"hiddenAliases": [],
|
|
2555
|
+
"id": "workspace:list",
|
|
2556
|
+
"pluginAlias": "hereya-cli",
|
|
2557
|
+
"pluginName": "hereya-cli",
|
|
2558
|
+
"pluginType": "core",
|
|
2559
|
+
"strict": true,
|
|
2560
|
+
"enableJsonFlag": false,
|
|
2561
|
+
"isESM": true,
|
|
2562
|
+
"relativePath": [
|
|
2563
|
+
"dist",
|
|
2564
|
+
"commands",
|
|
2565
|
+
"workspace",
|
|
2566
|
+
"list",
|
|
2567
|
+
"index.js"
|
|
2568
|
+
]
|
|
2569
|
+
},
|
|
2792
2570
|
"workspace:set-profile": {
|
|
2793
2571
|
"aliases": [],
|
|
2794
2572
|
"args": {
|
|
@@ -2838,21 +2616,48 @@
|
|
|
2838
2616
|
"index.js"
|
|
2839
2617
|
]
|
|
2840
2618
|
},
|
|
2841
|
-
"workspace:
|
|
2619
|
+
"workspace:uninstall": {
|
|
2842
2620
|
"aliases": [],
|
|
2843
|
-
"args": {
|
|
2844
|
-
|
|
2621
|
+
"args": {
|
|
2622
|
+
"package": {
|
|
2623
|
+
"description": "The package to remove. Packages are gitHub repositories. Use the format owner/repository",
|
|
2624
|
+
"name": "package",
|
|
2625
|
+
"required": true
|
|
2626
|
+
}
|
|
2627
|
+
},
|
|
2628
|
+
"description": "Remove a package from a workspace.",
|
|
2845
2629
|
"examples": [
|
|
2846
|
-
"<%= config.bin %> <%= command.id %>"
|
|
2847
|
-
"<%= config.bin %> <%= command.id %> --org my-org",
|
|
2848
|
-
"<%= config.bin %> <%= command.id %> --org personal"
|
|
2630
|
+
"<%= config.bin %> <%= command.id %> hereya/aws-cognito"
|
|
2849
2631
|
],
|
|
2850
2632
|
"flags": {
|
|
2851
|
-
"
|
|
2852
|
-
"
|
|
2853
|
-
"
|
|
2854
|
-
"
|
|
2855
|
-
"
|
|
2633
|
+
"debug": {
|
|
2634
|
+
"description": "enable debug mode",
|
|
2635
|
+
"name": "debug",
|
|
2636
|
+
"allowNo": false,
|
|
2637
|
+
"type": "boolean"
|
|
2638
|
+
},
|
|
2639
|
+
"parameter": {
|
|
2640
|
+
"char": "p",
|
|
2641
|
+
"description": "parameter for the package, in the form of 'key=value'. Can be specified multiple times.",
|
|
2642
|
+
"name": "parameter",
|
|
2643
|
+
"default": [],
|
|
2644
|
+
"hasDynamicHelp": false,
|
|
2645
|
+
"multiple": true,
|
|
2646
|
+
"type": "option"
|
|
2647
|
+
},
|
|
2648
|
+
"parameter-file": {
|
|
2649
|
+
"char": "f",
|
|
2650
|
+
"description": "path to a file containing parameters for the package",
|
|
2651
|
+
"name": "parameter-file",
|
|
2652
|
+
"hasDynamicHelp": false,
|
|
2653
|
+
"multiple": false,
|
|
2654
|
+
"type": "option"
|
|
2655
|
+
},
|
|
2656
|
+
"workspace": {
|
|
2657
|
+
"char": "w",
|
|
2658
|
+
"description": "name of the workspace to remove the package from",
|
|
2659
|
+
"name": "workspace",
|
|
2660
|
+
"required": true,
|
|
2856
2661
|
"hasDynamicHelp": false,
|
|
2857
2662
|
"multiple": false,
|
|
2858
2663
|
"type": "option"
|
|
@@ -2860,7 +2665,7 @@
|
|
|
2860
2665
|
},
|
|
2861
2666
|
"hasDynamicHelp": false,
|
|
2862
2667
|
"hiddenAliases": [],
|
|
2863
|
-
"id": "workspace:
|
|
2668
|
+
"id": "workspace:uninstall",
|
|
2864
2669
|
"pluginAlias": "hereya-cli",
|
|
2865
2670
|
"pluginName": "hereya-cli",
|
|
2866
2671
|
"pluginType": "core",
|
|
@@ -2871,22 +2676,51 @@
|
|
|
2871
2676
|
"dist",
|
|
2872
2677
|
"commands",
|
|
2873
2678
|
"workspace",
|
|
2874
|
-
"
|
|
2679
|
+
"uninstall",
|
|
2875
2680
|
"index.js"
|
|
2876
2681
|
]
|
|
2877
2682
|
},
|
|
2878
|
-
"
|
|
2683
|
+
"devenv:config": {
|
|
2879
2684
|
"aliases": [],
|
|
2880
|
-
"args": {
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2685
|
+
"args": {},
|
|
2686
|
+
"description": "Configure SSH for a dev environment and display connection details. On-demand devenvs use a ProxyCommand that wakes the instance on first connection.",
|
|
2687
|
+
"examples": [
|
|
2688
|
+
"<%= config.bin %> <%= command.id %> -w my-workspace"
|
|
2689
|
+
],
|
|
2690
|
+
"flags": {
|
|
2691
|
+
"workspace": {
|
|
2692
|
+
"char": "w",
|
|
2693
|
+
"description": "name of the workspace to configure SSH for",
|
|
2694
|
+
"name": "workspace",
|
|
2695
|
+
"required": true,
|
|
2696
|
+
"hasDynamicHelp": false,
|
|
2697
|
+
"multiple": false,
|
|
2698
|
+
"type": "option"
|
|
2885
2699
|
}
|
|
2886
2700
|
},
|
|
2887
|
-
"
|
|
2701
|
+
"hasDynamicHelp": false,
|
|
2702
|
+
"hiddenAliases": [],
|
|
2703
|
+
"id": "devenv:config",
|
|
2704
|
+
"pluginAlias": "hereya-cli",
|
|
2705
|
+
"pluginName": "hereya-cli",
|
|
2706
|
+
"pluginType": "core",
|
|
2707
|
+
"strict": true,
|
|
2708
|
+
"enableJsonFlag": false,
|
|
2709
|
+
"isESM": true,
|
|
2710
|
+
"relativePath": [
|
|
2711
|
+
"dist",
|
|
2712
|
+
"commands",
|
|
2713
|
+
"devenv",
|
|
2714
|
+
"config",
|
|
2715
|
+
"index.js"
|
|
2716
|
+
]
|
|
2717
|
+
},
|
|
2718
|
+
"devenv:install": {
|
|
2719
|
+
"aliases": [],
|
|
2720
|
+
"args": {},
|
|
2721
|
+
"description": "Provision a remote dev environment on a workspace.",
|
|
2888
2722
|
"examples": [
|
|
2889
|
-
"<%= config.bin %> <%= command.id %>
|
|
2723
|
+
"<%= config.bin %> <%= command.id %> -w my-workspace -p instanceType=t3.large"
|
|
2890
2724
|
],
|
|
2891
2725
|
"flags": {
|
|
2892
2726
|
"debug": {
|
|
@@ -2895,6 +2729,14 @@
|
|
|
2895
2729
|
"allowNo": false,
|
|
2896
2730
|
"type": "boolean"
|
|
2897
2731
|
},
|
|
2732
|
+
"on-behalf-of": {
|
|
2733
|
+
"description": "email of an org member to install the devenv for; the baked Hereya token will carry their identity (requires OWNER or ADMIN role)",
|
|
2734
|
+
"name": "on-behalf-of",
|
|
2735
|
+
"required": false,
|
|
2736
|
+
"hasDynamicHelp": false,
|
|
2737
|
+
"multiple": false,
|
|
2738
|
+
"type": "option"
|
|
2739
|
+
},
|
|
2898
2740
|
"parameter": {
|
|
2899
2741
|
"char": "p",
|
|
2900
2742
|
"description": "parameter for the package, in the form of 'key=value'. Can be specified multiple times.",
|
|
@@ -2912,9 +2754,17 @@
|
|
|
2912
2754
|
"multiple": false,
|
|
2913
2755
|
"type": "option"
|
|
2914
2756
|
},
|
|
2757
|
+
"version": {
|
|
2758
|
+
"char": "v",
|
|
2759
|
+
"description": "version of the dev environment package",
|
|
2760
|
+
"name": "version",
|
|
2761
|
+
"hasDynamicHelp": false,
|
|
2762
|
+
"multiple": false,
|
|
2763
|
+
"type": "option"
|
|
2764
|
+
},
|
|
2915
2765
|
"workspace": {
|
|
2916
2766
|
"char": "w",
|
|
2917
|
-
"description": "name of the workspace to
|
|
2767
|
+
"description": "name of the workspace to provision the dev environment on",
|
|
2918
2768
|
"name": "workspace",
|
|
2919
2769
|
"required": true,
|
|
2920
2770
|
"hasDynamicHelp": false,
|
|
@@ -2924,7 +2774,7 @@
|
|
|
2924
2774
|
},
|
|
2925
2775
|
"hasDynamicHelp": false,
|
|
2926
2776
|
"hiddenAliases": [],
|
|
2927
|
-
"id": "
|
|
2777
|
+
"id": "devenv:install",
|
|
2928
2778
|
"pluginAlias": "hereya-cli",
|
|
2929
2779
|
"pluginName": "hereya-cli",
|
|
2930
2780
|
"pluginType": "core",
|
|
@@ -2934,65 +2784,95 @@
|
|
|
2934
2784
|
"relativePath": [
|
|
2935
2785
|
"dist",
|
|
2936
2786
|
"commands",
|
|
2937
|
-
"
|
|
2938
|
-
"
|
|
2787
|
+
"devenv",
|
|
2788
|
+
"install",
|
|
2939
2789
|
"index.js"
|
|
2940
2790
|
]
|
|
2941
2791
|
},
|
|
2942
|
-
"devenv:
|
|
2792
|
+
"devenv:sleep": {
|
|
2943
2793
|
"aliases": [],
|
|
2944
|
-
"args": {
|
|
2945
|
-
|
|
2946
|
-
"description": "project name",
|
|
2947
|
-
"name": "project",
|
|
2948
|
-
"required": true
|
|
2949
|
-
}
|
|
2950
|
-
},
|
|
2951
|
-
"description": "Initialize a project on a remote dev environment.",
|
|
2794
|
+
"args": {},
|
|
2795
|
+
"description": "Stop the dev environment instance for a workspace (lifecycle=on-demand only).",
|
|
2952
2796
|
"examples": [
|
|
2953
|
-
"<%= config.bin %> <%= command.id %>
|
|
2954
|
-
"<%= config.bin %> <%= command.id %> my-app -w my-workspace -t acme/node-starter",
|
|
2955
|
-
"<%= config.bin %> <%= command.id %> my-app -w my-workspace -t acme/node-starter -p region=us-east-1"
|
|
2797
|
+
"<%= config.bin %> <%= command.id %> -w my-workspace"
|
|
2956
2798
|
],
|
|
2957
2799
|
"flags": {
|
|
2958
|
-
"
|
|
2959
|
-
"
|
|
2960
|
-
"
|
|
2961
|
-
"name": "deploy-workspace",
|
|
2962
|
-
"required": false,
|
|
2963
|
-
"hasDynamicHelp": false,
|
|
2964
|
-
"multiple": false,
|
|
2965
|
-
"type": "option"
|
|
2966
|
-
},
|
|
2967
|
-
"force": {
|
|
2968
|
-
"char": "f",
|
|
2969
|
-
"description": "continue even if folder already exists",
|
|
2970
|
-
"name": "force",
|
|
2800
|
+
"debug": {
|
|
2801
|
+
"description": "enable debug mode",
|
|
2802
|
+
"name": "debug",
|
|
2971
2803
|
"allowNo": false,
|
|
2972
2804
|
"type": "boolean"
|
|
2973
2805
|
},
|
|
2974
|
-
"
|
|
2975
|
-
"char": "
|
|
2976
|
-
"description": "
|
|
2977
|
-
"name": "
|
|
2978
|
-
"required":
|
|
2979
|
-
"default": [],
|
|
2806
|
+
"workspace": {
|
|
2807
|
+
"char": "w",
|
|
2808
|
+
"description": "name of the workspace whose dev environment should be stopped",
|
|
2809
|
+
"name": "workspace",
|
|
2810
|
+
"required": true,
|
|
2980
2811
|
"hasDynamicHelp": false,
|
|
2981
|
-
"multiple":
|
|
2812
|
+
"multiple": false,
|
|
2982
2813
|
"type": "option"
|
|
2983
|
-
}
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2816
|
+
"hasDynamicHelp": false,
|
|
2817
|
+
"hiddenAliases": [],
|
|
2818
|
+
"id": "devenv:sleep",
|
|
2819
|
+
"pluginAlias": "hereya-cli",
|
|
2820
|
+
"pluginName": "hereya-cli",
|
|
2821
|
+
"pluginType": "core",
|
|
2822
|
+
"strict": true,
|
|
2823
|
+
"enableJsonFlag": false,
|
|
2824
|
+
"isESM": true,
|
|
2825
|
+
"relativePath": [
|
|
2826
|
+
"dist",
|
|
2827
|
+
"commands",
|
|
2828
|
+
"devenv",
|
|
2829
|
+
"sleep",
|
|
2830
|
+
"index.js"
|
|
2831
|
+
]
|
|
2832
|
+
},
|
|
2833
|
+
"devenv:ssh": {
|
|
2834
|
+
"aliases": [],
|
|
2835
|
+
"args": {},
|
|
2836
|
+
"description": "SSH into a dev environment instance.",
|
|
2837
|
+
"examples": [
|
|
2838
|
+
"<%= config.bin %> <%= command.id %> -w my-workspace"
|
|
2839
|
+
],
|
|
2840
|
+
"flags": {
|
|
2841
|
+
"workspace": {
|
|
2842
|
+
"char": "w",
|
|
2843
|
+
"description": "name of the workspace to SSH into",
|
|
2844
|
+
"name": "workspace",
|
|
2845
|
+
"required": true,
|
|
2989
2846
|
"hasDynamicHelp": false,
|
|
2990
2847
|
"multiple": false,
|
|
2991
2848
|
"type": "option"
|
|
2992
|
-
}
|
|
2849
|
+
}
|
|
2850
|
+
},
|
|
2851
|
+
"hasDynamicHelp": false,
|
|
2852
|
+
"hiddenAliases": [],
|
|
2853
|
+
"id": "devenv:ssh",
|
|
2854
|
+
"pluginAlias": "hereya-cli",
|
|
2855
|
+
"pluginName": "hereya-cli",
|
|
2856
|
+
"pluginType": "core",
|
|
2857
|
+
"strict": true,
|
|
2858
|
+
"enableJsonFlag": false,
|
|
2859
|
+
"isESM": true,
|
|
2860
|
+
"relativePath": [
|
|
2861
|
+
"dist",
|
|
2862
|
+
"commands",
|
|
2863
|
+
"devenv",
|
|
2864
|
+
"ssh",
|
|
2865
|
+
"index.js"
|
|
2866
|
+
]
|
|
2867
|
+
},
|
|
2868
|
+
"devenv:ssh-proxy": {
|
|
2869
|
+
"aliases": [],
|
|
2870
|
+
"args": {},
|
|
2871
|
+
"description": "Internal: SSH ProxyCommand for on-demand devenvs (wake + connect).",
|
|
2872
|
+
"flags": {
|
|
2993
2873
|
"workspace": {
|
|
2994
2874
|
"char": "w",
|
|
2995
|
-
"description": "name of the workspace",
|
|
2875
|
+
"description": "name of the workspace to proxy SSH for",
|
|
2996
2876
|
"name": "workspace",
|
|
2997
2877
|
"required": true,
|
|
2998
2878
|
"hasDynamicHelp": false,
|
|
@@ -3001,8 +2881,9 @@
|
|
|
3001
2881
|
}
|
|
3002
2882
|
},
|
|
3003
2883
|
"hasDynamicHelp": false,
|
|
2884
|
+
"hidden": true,
|
|
3004
2885
|
"hiddenAliases": [],
|
|
3005
|
-
"id": "devenv:
|
|
2886
|
+
"id": "devenv:ssh-proxy",
|
|
3006
2887
|
"pluginAlias": "hereya-cli",
|
|
3007
2888
|
"pluginName": "hereya-cli",
|
|
3008
2889
|
"pluginType": "core",
|
|
@@ -3013,36 +2894,27 @@
|
|
|
3013
2894
|
"dist",
|
|
3014
2895
|
"commands",
|
|
3015
2896
|
"devenv",
|
|
3016
|
-
"
|
|
3017
|
-
"init",
|
|
2897
|
+
"ssh-proxy",
|
|
3018
2898
|
"index.js"
|
|
3019
2899
|
]
|
|
3020
2900
|
},
|
|
3021
|
-
"devenv:
|
|
2901
|
+
"devenv:uninstall": {
|
|
3022
2902
|
"aliases": [],
|
|
3023
|
-
"args": {
|
|
3024
|
-
|
|
3025
|
-
"description": "project name",
|
|
3026
|
-
"name": "project",
|
|
3027
|
-
"required": true
|
|
3028
|
-
}
|
|
3029
|
-
},
|
|
3030
|
-
"description": "Uninitialize a project on a remote dev environment.",
|
|
2903
|
+
"args": {},
|
|
2904
|
+
"description": "Destroy and remove the dev environment from a workspace.",
|
|
3031
2905
|
"examples": [
|
|
3032
|
-
"<%= config.bin %> <%= command.id %>
|
|
3033
|
-
"<%= config.bin %> <%= command.id %> my-app -w my-workspace --force"
|
|
2906
|
+
"<%= config.bin %> <%= command.id %> -w my-workspace"
|
|
3034
2907
|
],
|
|
3035
2908
|
"flags": {
|
|
3036
|
-
"
|
|
3037
|
-
"
|
|
3038
|
-
"
|
|
3039
|
-
"name": "force",
|
|
2909
|
+
"debug": {
|
|
2910
|
+
"description": "enable debug mode",
|
|
2911
|
+
"name": "debug",
|
|
3040
2912
|
"allowNo": false,
|
|
3041
2913
|
"type": "boolean"
|
|
3042
2914
|
},
|
|
3043
2915
|
"workspace": {
|
|
3044
2916
|
"char": "w",
|
|
3045
|
-
"description": "name of the workspace",
|
|
2917
|
+
"description": "name of the workspace to remove the dev environment from",
|
|
3046
2918
|
"name": "workspace",
|
|
3047
2919
|
"required": true,
|
|
3048
2920
|
"hasDynamicHelp": false,
|
|
@@ -3052,7 +2924,7 @@
|
|
|
3052
2924
|
},
|
|
3053
2925
|
"hasDynamicHelp": false,
|
|
3054
2926
|
"hiddenAliases": [],
|
|
3055
|
-
"id": "devenv:
|
|
2927
|
+
"id": "devenv:uninstall",
|
|
3056
2928
|
"pluginAlias": "hereya-cli",
|
|
3057
2929
|
"pluginName": "hereya-cli",
|
|
3058
2930
|
"pluginType": "core",
|
|
@@ -3063,8 +2935,7 @@
|
|
|
3063
2935
|
"dist",
|
|
3064
2936
|
"commands",
|
|
3065
2937
|
"devenv",
|
|
3066
|
-
"
|
|
3067
|
-
"uninit",
|
|
2938
|
+
"uninstall",
|
|
3068
2939
|
"index.js"
|
|
3069
2940
|
]
|
|
3070
2941
|
},
|
|
@@ -3251,6 +3122,39 @@
|
|
|
3251
3122
|
"index.js"
|
|
3252
3123
|
]
|
|
3253
3124
|
},
|
|
3125
|
+
"workspace:executor:token": {
|
|
3126
|
+
"aliases": [],
|
|
3127
|
+
"args": {},
|
|
3128
|
+
"description": "Generate a workspace-scoped executor token for the remote executor",
|
|
3129
|
+
"flags": {
|
|
3130
|
+
"workspace": {
|
|
3131
|
+
"char": "w",
|
|
3132
|
+
"description": "name of the workspace",
|
|
3133
|
+
"name": "workspace",
|
|
3134
|
+
"required": true,
|
|
3135
|
+
"hasDynamicHelp": false,
|
|
3136
|
+
"multiple": false,
|
|
3137
|
+
"type": "option"
|
|
3138
|
+
}
|
|
3139
|
+
},
|
|
3140
|
+
"hasDynamicHelp": false,
|
|
3141
|
+
"hiddenAliases": [],
|
|
3142
|
+
"id": "workspace:executor:token",
|
|
3143
|
+
"pluginAlias": "hereya-cli",
|
|
3144
|
+
"pluginName": "hereya-cli",
|
|
3145
|
+
"pluginType": "core",
|
|
3146
|
+
"strict": true,
|
|
3147
|
+
"enableJsonFlag": false,
|
|
3148
|
+
"isESM": true,
|
|
3149
|
+
"relativePath": [
|
|
3150
|
+
"dist",
|
|
3151
|
+
"commands",
|
|
3152
|
+
"workspace",
|
|
3153
|
+
"executor",
|
|
3154
|
+
"token",
|
|
3155
|
+
"index.js"
|
|
3156
|
+
]
|
|
3157
|
+
},
|
|
3254
3158
|
"workspace:executor:install": {
|
|
3255
3159
|
"aliases": [],
|
|
3256
3160
|
"args": {},
|
|
@@ -3324,11 +3228,29 @@
|
|
|
3324
3228
|
"index.js"
|
|
3325
3229
|
]
|
|
3326
3230
|
},
|
|
3327
|
-
"workspace:executor:
|
|
3231
|
+
"workspace:executor:uninstall": {
|
|
3328
3232
|
"aliases": [],
|
|
3329
3233
|
"args": {},
|
|
3330
|
-
"description": "
|
|
3234
|
+
"description": "Uninstall the remote executor from a workspace.\n\nBoth modes (always-on and ephemeral) are backed by the same package\n(hereya/remote-executor-aws). The --mode flag is informational only and\ncontrols log output.",
|
|
3331
3235
|
"flags": {
|
|
3236
|
+
"debug": {
|
|
3237
|
+
"description": "enable debug mode",
|
|
3238
|
+
"name": "debug",
|
|
3239
|
+
"allowNo": false,
|
|
3240
|
+
"type": "boolean"
|
|
3241
|
+
},
|
|
3242
|
+
"mode": {
|
|
3243
|
+
"description": "executor mode used at install time (informational only)",
|
|
3244
|
+
"name": "mode",
|
|
3245
|
+
"default": "always-on",
|
|
3246
|
+
"hasDynamicHelp": false,
|
|
3247
|
+
"multiple": false,
|
|
3248
|
+
"options": [
|
|
3249
|
+
"ephemeral",
|
|
3250
|
+
"always-on"
|
|
3251
|
+
],
|
|
3252
|
+
"type": "option"
|
|
3253
|
+
},
|
|
3332
3254
|
"workspace": {
|
|
3333
3255
|
"char": "w",
|
|
3334
3256
|
"description": "name of the workspace",
|
|
@@ -3341,7 +3263,7 @@
|
|
|
3341
3263
|
},
|
|
3342
3264
|
"hasDynamicHelp": false,
|
|
3343
3265
|
"hiddenAliases": [],
|
|
3344
|
-
"id": "workspace:executor:
|
|
3266
|
+
"id": "workspace:executor:uninstall",
|
|
3345
3267
|
"pluginAlias": "hereya-cli",
|
|
3346
3268
|
"pluginName": "hereya-cli",
|
|
3347
3269
|
"pluginType": "core",
|
|
@@ -3353,31 +3275,59 @@
|
|
|
3353
3275
|
"commands",
|
|
3354
3276
|
"workspace",
|
|
3355
3277
|
"executor",
|
|
3356
|
-
"
|
|
3278
|
+
"uninstall",
|
|
3357
3279
|
"index.js"
|
|
3358
3280
|
]
|
|
3359
3281
|
},
|
|
3360
|
-
"
|
|
3282
|
+
"devenv:project:init": {
|
|
3361
3283
|
"aliases": [],
|
|
3362
|
-
"args": {
|
|
3363
|
-
|
|
3284
|
+
"args": {
|
|
3285
|
+
"project": {
|
|
3286
|
+
"description": "project name",
|
|
3287
|
+
"name": "project",
|
|
3288
|
+
"required": true
|
|
3289
|
+
}
|
|
3290
|
+
},
|
|
3291
|
+
"description": "Initialize a project on a remote dev environment.",
|
|
3292
|
+
"examples": [
|
|
3293
|
+
"<%= config.bin %> <%= command.id %> my-app -w my-workspace",
|
|
3294
|
+
"<%= config.bin %> <%= command.id %> my-app -w my-workspace -t acme/node-starter",
|
|
3295
|
+
"<%= config.bin %> <%= command.id %> my-app -w my-workspace -t acme/node-starter -p region=us-east-1"
|
|
3296
|
+
],
|
|
3364
3297
|
"flags": {
|
|
3365
|
-
"
|
|
3366
|
-
"
|
|
3367
|
-
"
|
|
3298
|
+
"deploy-workspace": {
|
|
3299
|
+
"char": "d",
|
|
3300
|
+
"description": "workspace used for deployment (required when using a template)",
|
|
3301
|
+
"name": "deploy-workspace",
|
|
3302
|
+
"required": false,
|
|
3303
|
+
"hasDynamicHelp": false,
|
|
3304
|
+
"multiple": false,
|
|
3305
|
+
"type": "option"
|
|
3306
|
+
},
|
|
3307
|
+
"force": {
|
|
3308
|
+
"char": "f",
|
|
3309
|
+
"description": "continue even if folder already exists",
|
|
3310
|
+
"name": "force",
|
|
3368
3311
|
"allowNo": false,
|
|
3369
3312
|
"type": "boolean"
|
|
3370
3313
|
},
|
|
3371
|
-
"
|
|
3372
|
-
"
|
|
3373
|
-
"
|
|
3374
|
-
"
|
|
3314
|
+
"parameter": {
|
|
3315
|
+
"char": "p",
|
|
3316
|
+
"description": "parameter for the template, in the form of 'key=value'. Can be specified multiple times.",
|
|
3317
|
+
"name": "parameter",
|
|
3318
|
+
"required": false,
|
|
3319
|
+
"default": [],
|
|
3320
|
+
"hasDynamicHelp": false,
|
|
3321
|
+
"multiple": true,
|
|
3322
|
+
"type": "option"
|
|
3323
|
+
},
|
|
3324
|
+
"template": {
|
|
3325
|
+
"char": "t",
|
|
3326
|
+
"description": "template package to scaffold the project from",
|
|
3327
|
+
"name": "template",
|
|
3328
|
+
"required": false,
|
|
3375
3329
|
"hasDynamicHelp": false,
|
|
3376
3330
|
"multiple": false,
|
|
3377
|
-
"options": [
|
|
3378
|
-
"ephemeral",
|
|
3379
|
-
"always-on"
|
|
3380
|
-
],
|
|
3381
3331
|
"type": "option"
|
|
3382
3332
|
},
|
|
3383
3333
|
"workspace": {
|
|
@@ -3392,7 +3342,7 @@
|
|
|
3392
3342
|
},
|
|
3393
3343
|
"hasDynamicHelp": false,
|
|
3394
3344
|
"hiddenAliases": [],
|
|
3395
|
-
"id": "
|
|
3345
|
+
"id": "devenv:project:init",
|
|
3396
3346
|
"pluginAlias": "hereya-cli",
|
|
3397
3347
|
"pluginName": "hereya-cli",
|
|
3398
3348
|
"pluginType": "core",
|
|
@@ -3402,12 +3352,62 @@
|
|
|
3402
3352
|
"relativePath": [
|
|
3403
3353
|
"dist",
|
|
3404
3354
|
"commands",
|
|
3405
|
-
"
|
|
3406
|
-
"
|
|
3407
|
-
"
|
|
3355
|
+
"devenv",
|
|
3356
|
+
"project",
|
|
3357
|
+
"init",
|
|
3358
|
+
"index.js"
|
|
3359
|
+
]
|
|
3360
|
+
},
|
|
3361
|
+
"devenv:project:uninit": {
|
|
3362
|
+
"aliases": [],
|
|
3363
|
+
"args": {
|
|
3364
|
+
"project": {
|
|
3365
|
+
"description": "project name",
|
|
3366
|
+
"name": "project",
|
|
3367
|
+
"required": true
|
|
3368
|
+
}
|
|
3369
|
+
},
|
|
3370
|
+
"description": "Uninitialize a project on a remote dev environment.",
|
|
3371
|
+
"examples": [
|
|
3372
|
+
"<%= config.bin %> <%= command.id %> my-app -w my-workspace",
|
|
3373
|
+
"<%= config.bin %> <%= command.id %> my-app -w my-workspace --force"
|
|
3374
|
+
],
|
|
3375
|
+
"flags": {
|
|
3376
|
+
"force": {
|
|
3377
|
+
"char": "f",
|
|
3378
|
+
"description": "also remove the project directory after uninit",
|
|
3379
|
+
"name": "force",
|
|
3380
|
+
"allowNo": false,
|
|
3381
|
+
"type": "boolean"
|
|
3382
|
+
},
|
|
3383
|
+
"workspace": {
|
|
3384
|
+
"char": "w",
|
|
3385
|
+
"description": "name of the workspace",
|
|
3386
|
+
"name": "workspace",
|
|
3387
|
+
"required": true,
|
|
3388
|
+
"hasDynamicHelp": false,
|
|
3389
|
+
"multiple": false,
|
|
3390
|
+
"type": "option"
|
|
3391
|
+
}
|
|
3392
|
+
},
|
|
3393
|
+
"hasDynamicHelp": false,
|
|
3394
|
+
"hiddenAliases": [],
|
|
3395
|
+
"id": "devenv:project:uninit",
|
|
3396
|
+
"pluginAlias": "hereya-cli",
|
|
3397
|
+
"pluginName": "hereya-cli",
|
|
3398
|
+
"pluginType": "core",
|
|
3399
|
+
"strict": true,
|
|
3400
|
+
"enableJsonFlag": false,
|
|
3401
|
+
"isESM": true,
|
|
3402
|
+
"relativePath": [
|
|
3403
|
+
"dist",
|
|
3404
|
+
"commands",
|
|
3405
|
+
"devenv",
|
|
3406
|
+
"project",
|
|
3407
|
+
"uninit",
|
|
3408
3408
|
"index.js"
|
|
3409
3409
|
]
|
|
3410
3410
|
}
|
|
3411
3411
|
},
|
|
3412
|
-
"version": "0.100.
|
|
3412
|
+
"version": "0.100.5"
|
|
3413
3413
|
}
|