hereya-cli 0.100.6 → 0.101.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 +66 -66
- package/dist/commands/executor/start/index.js +2 -2
- package/dist/lib/app-source.d.ts +24 -0
- package/dist/lib/app-source.js +44 -7
- package/dist/lib/executor-start/execute-app-job.d.ts +2 -1
- package/dist/lib/executor-start/execute-app-job.js +55 -2
- package/dist/lib/executor-start/job-dispatch.js +1 -1
- package/oclif.manifest.json +209 -209
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1042,41 +1042,37 @@
|
|
|
1042
1042
|
"index.js"
|
|
1043
1043
|
]
|
|
1044
1044
|
},
|
|
1045
|
-
"
|
|
1045
|
+
"undeploy": {
|
|
1046
1046
|
"aliases": [],
|
|
1047
|
-
"args": {
|
|
1048
|
-
|
|
1049
|
-
"description": "project name",
|
|
1050
|
-
"name": "project",
|
|
1051
|
-
"required": true
|
|
1052
|
-
}
|
|
1053
|
-
},
|
|
1054
|
-
"description": "Destroy template infrastructure and uninitialize a project.",
|
|
1047
|
+
"args": {},
|
|
1048
|
+
"description": "Undeploy a hereya project by removing all resources.",
|
|
1055
1049
|
"examples": [
|
|
1056
|
-
"<%= config.bin %> <%= command.id %>
|
|
1057
|
-
"<%= config.bin %> <%= command.id %> myProject -w dev -p prodWorkspace=prod"
|
|
1050
|
+
"<%= config.bin %> <%= command.id %>"
|
|
1058
1051
|
],
|
|
1059
1052
|
"flags": {
|
|
1060
1053
|
"chdir": {
|
|
1061
|
-
"description": "
|
|
1054
|
+
"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 ",
|
|
1062
1055
|
"name": "chdir",
|
|
1063
1056
|
"required": false,
|
|
1064
1057
|
"hasDynamicHelp": false,
|
|
1065
1058
|
"multiple": false,
|
|
1066
1059
|
"type": "option"
|
|
1067
1060
|
},
|
|
1068
|
-
"
|
|
1069
|
-
"
|
|
1070
|
-
"
|
|
1071
|
-
"
|
|
1072
|
-
"
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
"
|
|
1061
|
+
"debug": {
|
|
1062
|
+
"description": "enable debug mode",
|
|
1063
|
+
"name": "debug",
|
|
1064
|
+
"allowNo": false,
|
|
1065
|
+
"type": "boolean"
|
|
1066
|
+
},
|
|
1067
|
+
"local": {
|
|
1068
|
+
"description": "force local execution (skip remote executor)",
|
|
1069
|
+
"name": "local",
|
|
1070
|
+
"allowNo": false,
|
|
1071
|
+
"type": "boolean"
|
|
1076
1072
|
},
|
|
1077
1073
|
"workspace": {
|
|
1078
1074
|
"char": "w",
|
|
1079
|
-
"description": "workspace
|
|
1075
|
+
"description": "name of the workspace to undeploy the packages for",
|
|
1080
1076
|
"name": "workspace",
|
|
1081
1077
|
"required": true,
|
|
1082
1078
|
"hasDynamicHelp": false,
|
|
@@ -1086,7 +1082,7 @@
|
|
|
1086
1082
|
},
|
|
1087
1083
|
"hasDynamicHelp": false,
|
|
1088
1084
|
"hiddenAliases": [],
|
|
1089
|
-
"id": "
|
|
1085
|
+
"id": "undeploy",
|
|
1090
1086
|
"pluginAlias": "hereya-cli",
|
|
1091
1087
|
"pluginName": "hereya-cli",
|
|
1092
1088
|
"pluginType": "core",
|
|
@@ -1096,41 +1092,45 @@
|
|
|
1096
1092
|
"relativePath": [
|
|
1097
1093
|
"dist",
|
|
1098
1094
|
"commands",
|
|
1099
|
-
"
|
|
1095
|
+
"undeploy",
|
|
1100
1096
|
"index.js"
|
|
1101
1097
|
]
|
|
1102
1098
|
},
|
|
1103
|
-
"
|
|
1099
|
+
"uninit": {
|
|
1104
1100
|
"aliases": [],
|
|
1105
|
-
"args": {
|
|
1106
|
-
|
|
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.",
|
|
1107
1109
|
"examples": [
|
|
1108
|
-
"<%= config.bin %> <%= command.id %>"
|
|
1110
|
+
"<%= config.bin %> <%= command.id %> myProject -w dev",
|
|
1111
|
+
"<%= config.bin %> <%= command.id %> myProject -w dev -p prodWorkspace=prod"
|
|
1109
1112
|
],
|
|
1110
1113
|
"flags": {
|
|
1111
1114
|
"chdir": {
|
|
1112
|
-
"description": "
|
|
1115
|
+
"description": "directory to run command in",
|
|
1113
1116
|
"name": "chdir",
|
|
1114
1117
|
"required": false,
|
|
1115
1118
|
"hasDynamicHelp": false,
|
|
1116
1119
|
"multiple": false,
|
|
1117
1120
|
"type": "option"
|
|
1118
1121
|
},
|
|
1119
|
-
"
|
|
1120
|
-
"
|
|
1121
|
-
"
|
|
1122
|
-
"
|
|
1123
|
-
"
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
"
|
|
1127
|
-
"name": "local",
|
|
1128
|
-
"allowNo": false,
|
|
1129
|
-
"type": "boolean"
|
|
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
1130
|
},
|
|
1131
1131
|
"workspace": {
|
|
1132
1132
|
"char": "w",
|
|
1133
|
-
"description": "
|
|
1133
|
+
"description": "workspace used during init",
|
|
1134
1134
|
"name": "workspace",
|
|
1135
1135
|
"required": true,
|
|
1136
1136
|
"hasDynamicHelp": false,
|
|
@@ -1140,7 +1140,7 @@
|
|
|
1140
1140
|
},
|
|
1141
1141
|
"hasDynamicHelp": false,
|
|
1142
1142
|
"hiddenAliases": [],
|
|
1143
|
-
"id": "
|
|
1143
|
+
"id": "uninit",
|
|
1144
1144
|
"pluginAlias": "hereya-cli",
|
|
1145
1145
|
"pluginName": "hereya-cli",
|
|
1146
1146
|
"pluginType": "core",
|
|
@@ -1150,7 +1150,7 @@
|
|
|
1150
1150
|
"relativePath": [
|
|
1151
1151
|
"dist",
|
|
1152
1152
|
"commands",
|
|
1153
|
-
"
|
|
1153
|
+
"uninit",
|
|
1154
1154
|
"index.js"
|
|
1155
1155
|
]
|
|
1156
1156
|
},
|
|
@@ -1250,79 +1250,6 @@
|
|
|
1250
1250
|
"index.js"
|
|
1251
1251
|
]
|
|
1252
1252
|
},
|
|
1253
|
-
"app:deploy": {
|
|
1254
|
-
"aliases": [],
|
|
1255
|
-
"args": {
|
|
1256
|
-
"name": {
|
|
1257
|
-
"description": "app name in org/name format",
|
|
1258
|
-
"name": "name",
|
|
1259
|
-
"required": true
|
|
1260
|
-
}
|
|
1261
|
-
},
|
|
1262
|
-
"description": "Deploy a hereya-app to a workspace.",
|
|
1263
|
-
"examples": [
|
|
1264
|
-
"<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace",
|
|
1265
|
-
"<%= config.bin %> <%= command.id %> my-org/my-app -w prod --version 1.2.0",
|
|
1266
|
-
"<%= config.bin %> <%= command.id %> my-org/my-app -w prod -p organizationId=org-123"
|
|
1267
|
-
],
|
|
1268
|
-
"flags": {
|
|
1269
|
-
"chdir": {
|
|
1270
|
-
"description": "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.",
|
|
1271
|
-
"name": "chdir",
|
|
1272
|
-
"required": false,
|
|
1273
|
-
"hasDynamicHelp": false,
|
|
1274
|
-
"multiple": false,
|
|
1275
|
-
"type": "option"
|
|
1276
|
-
},
|
|
1277
|
-
"local": {
|
|
1278
|
-
"description": "force local execution (skip remote executor)",
|
|
1279
|
-
"name": "local",
|
|
1280
|
-
"allowNo": false,
|
|
1281
|
-
"type": "boolean"
|
|
1282
|
-
},
|
|
1283
|
-
"parameter": {
|
|
1284
|
-
"char": "p",
|
|
1285
|
-
"description": "parameter for the app deployment, in the form of key=value (repeatable)",
|
|
1286
|
-
"name": "parameter",
|
|
1287
|
-
"default": [],
|
|
1288
|
-
"hasDynamicHelp": false,
|
|
1289
|
-
"multiple": true,
|
|
1290
|
-
"type": "option"
|
|
1291
|
-
},
|
|
1292
|
-
"version": {
|
|
1293
|
-
"description": "specific app version to deploy (defaults to latest)",
|
|
1294
|
-
"name": "version",
|
|
1295
|
-
"hasDynamicHelp": false,
|
|
1296
|
-
"multiple": false,
|
|
1297
|
-
"type": "option"
|
|
1298
|
-
},
|
|
1299
|
-
"workspace": {
|
|
1300
|
-
"char": "w",
|
|
1301
|
-
"description": "name of the workspace to deploy the app to",
|
|
1302
|
-
"name": "workspace",
|
|
1303
|
-
"required": true,
|
|
1304
|
-
"hasDynamicHelp": false,
|
|
1305
|
-
"multiple": false,
|
|
1306
|
-
"type": "option"
|
|
1307
|
-
}
|
|
1308
|
-
},
|
|
1309
|
-
"hasDynamicHelp": false,
|
|
1310
|
-
"hiddenAliases": [],
|
|
1311
|
-
"id": "app:deploy",
|
|
1312
|
-
"pluginAlias": "hereya-cli",
|
|
1313
|
-
"pluginName": "hereya-cli",
|
|
1314
|
-
"pluginType": "core",
|
|
1315
|
-
"strict": true,
|
|
1316
|
-
"enableJsonFlag": false,
|
|
1317
|
-
"isESM": true,
|
|
1318
|
-
"relativePath": [
|
|
1319
|
-
"dist",
|
|
1320
|
-
"commands",
|
|
1321
|
-
"app",
|
|
1322
|
-
"deploy",
|
|
1323
|
-
"index.js"
|
|
1324
|
-
]
|
|
1325
|
-
},
|
|
1326
1253
|
"app:deployments": {
|
|
1327
1254
|
"aliases": [],
|
|
1328
1255
|
"args": {
|
|
@@ -1701,6 +1628,79 @@
|
|
|
1701
1628
|
"index.js"
|
|
1702
1629
|
]
|
|
1703
1630
|
},
|
|
1631
|
+
"app:deploy": {
|
|
1632
|
+
"aliases": [],
|
|
1633
|
+
"args": {
|
|
1634
|
+
"name": {
|
|
1635
|
+
"description": "app name in org/name format",
|
|
1636
|
+
"name": "name",
|
|
1637
|
+
"required": true
|
|
1638
|
+
}
|
|
1639
|
+
},
|
|
1640
|
+
"description": "Deploy a hereya-app to a workspace.",
|
|
1641
|
+
"examples": [
|
|
1642
|
+
"<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace",
|
|
1643
|
+
"<%= config.bin %> <%= command.id %> my-org/my-app -w prod --version 1.2.0",
|
|
1644
|
+
"<%= config.bin %> <%= command.id %> my-org/my-app -w prod -p organizationId=org-123"
|
|
1645
|
+
],
|
|
1646
|
+
"flags": {
|
|
1647
|
+
"chdir": {
|
|
1648
|
+
"description": "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.",
|
|
1649
|
+
"name": "chdir",
|
|
1650
|
+
"required": false,
|
|
1651
|
+
"hasDynamicHelp": false,
|
|
1652
|
+
"multiple": false,
|
|
1653
|
+
"type": "option"
|
|
1654
|
+
},
|
|
1655
|
+
"local": {
|
|
1656
|
+
"description": "force local execution (skip remote executor)",
|
|
1657
|
+
"name": "local",
|
|
1658
|
+
"allowNo": false,
|
|
1659
|
+
"type": "boolean"
|
|
1660
|
+
},
|
|
1661
|
+
"parameter": {
|
|
1662
|
+
"char": "p",
|
|
1663
|
+
"description": "parameter for the app deployment, in the form of key=value (repeatable)",
|
|
1664
|
+
"name": "parameter",
|
|
1665
|
+
"default": [],
|
|
1666
|
+
"hasDynamicHelp": false,
|
|
1667
|
+
"multiple": true,
|
|
1668
|
+
"type": "option"
|
|
1669
|
+
},
|
|
1670
|
+
"version": {
|
|
1671
|
+
"description": "specific app version to deploy (defaults to latest)",
|
|
1672
|
+
"name": "version",
|
|
1673
|
+
"hasDynamicHelp": false,
|
|
1674
|
+
"multiple": false,
|
|
1675
|
+
"type": "option"
|
|
1676
|
+
},
|
|
1677
|
+
"workspace": {
|
|
1678
|
+
"char": "w",
|
|
1679
|
+
"description": "name of the workspace to deploy the app to",
|
|
1680
|
+
"name": "workspace",
|
|
1681
|
+
"required": true,
|
|
1682
|
+
"hasDynamicHelp": false,
|
|
1683
|
+
"multiple": false,
|
|
1684
|
+
"type": "option"
|
|
1685
|
+
}
|
|
1686
|
+
},
|
|
1687
|
+
"hasDynamicHelp": false,
|
|
1688
|
+
"hiddenAliases": [],
|
|
1689
|
+
"id": "app:deploy",
|
|
1690
|
+
"pluginAlias": "hereya-cli",
|
|
1691
|
+
"pluginName": "hereya-cli",
|
|
1692
|
+
"pluginType": "core",
|
|
1693
|
+
"strict": true,
|
|
1694
|
+
"enableJsonFlag": false,
|
|
1695
|
+
"isESM": true,
|
|
1696
|
+
"relativePath": [
|
|
1697
|
+
"dist",
|
|
1698
|
+
"commands",
|
|
1699
|
+
"app",
|
|
1700
|
+
"deploy",
|
|
1701
|
+
"index.js"
|
|
1702
|
+
]
|
|
1703
|
+
},
|
|
1704
1704
|
"devenv:config": {
|
|
1705
1705
|
"aliases": [],
|
|
1706
1706
|
"args": {},
|
|
@@ -2588,62 +2588,6 @@
|
|
|
2588
2588
|
"index.js"
|
|
2589
2589
|
]
|
|
2590
2590
|
},
|
|
2591
|
-
"workspace:create": {
|
|
2592
|
-
"aliases": [],
|
|
2593
|
-
"args": {
|
|
2594
|
-
"name": {
|
|
2595
|
-
"description": "name of the workspace to create",
|
|
2596
|
-
"name": "name",
|
|
2597
|
-
"required": true
|
|
2598
|
-
}
|
|
2599
|
-
},
|
|
2600
|
-
"description": "Create a new workspace if it does not exist.",
|
|
2601
|
-
"examples": [
|
|
2602
|
-
"<%= config.bin %> <%= command.id %> dev"
|
|
2603
|
-
],
|
|
2604
|
-
"flags": {
|
|
2605
|
-
"deployment": {
|
|
2606
|
-
"char": "d",
|
|
2607
|
-
"description": "mark workspace as a deployment workspace",
|
|
2608
|
-
"name": "deployment",
|
|
2609
|
-
"required": false,
|
|
2610
|
-
"allowNo": false,
|
|
2611
|
-
"type": "boolean"
|
|
2612
|
-
},
|
|
2613
|
-
"mirror": {
|
|
2614
|
-
"description": "workspace to mirror",
|
|
2615
|
-
"name": "mirror",
|
|
2616
|
-
"required": false,
|
|
2617
|
-
"hasDynamicHelp": false,
|
|
2618
|
-
"multiple": false,
|
|
2619
|
-
"type": "option"
|
|
2620
|
-
},
|
|
2621
|
-
"profile": {
|
|
2622
|
-
"description": "workspace profile to set (cloud backend only)",
|
|
2623
|
-
"name": "profile",
|
|
2624
|
-
"required": false,
|
|
2625
|
-
"hasDynamicHelp": false,
|
|
2626
|
-
"multiple": false,
|
|
2627
|
-
"type": "option"
|
|
2628
|
-
}
|
|
2629
|
-
},
|
|
2630
|
-
"hasDynamicHelp": false,
|
|
2631
|
-
"hiddenAliases": [],
|
|
2632
|
-
"id": "workspace:create",
|
|
2633
|
-
"pluginAlias": "hereya-cli",
|
|
2634
|
-
"pluginName": "hereya-cli",
|
|
2635
|
-
"pluginType": "core",
|
|
2636
|
-
"strict": true,
|
|
2637
|
-
"enableJsonFlag": false,
|
|
2638
|
-
"isESM": true,
|
|
2639
|
-
"relativePath": [
|
|
2640
|
-
"dist",
|
|
2641
|
-
"commands",
|
|
2642
|
-
"workspace",
|
|
2643
|
-
"create",
|
|
2644
|
-
"index.js"
|
|
2645
|
-
]
|
|
2646
|
-
},
|
|
2647
2591
|
"workspace:delete": {
|
|
2648
2592
|
"aliases": [],
|
|
2649
2593
|
"args": {
|
|
@@ -2939,56 +2883,83 @@
|
|
|
2939
2883
|
"index.js"
|
|
2940
2884
|
]
|
|
2941
2885
|
},
|
|
2942
|
-
"
|
|
2886
|
+
"workspace:create": {
|
|
2943
2887
|
"aliases": [],
|
|
2944
2888
|
"args": {
|
|
2945
|
-
"
|
|
2946
|
-
"description": "
|
|
2947
|
-
"name": "
|
|
2889
|
+
"name": {
|
|
2890
|
+
"description": "name of the workspace to create",
|
|
2891
|
+
"name": "name",
|
|
2948
2892
|
"required": true
|
|
2949
2893
|
}
|
|
2950
2894
|
},
|
|
2951
|
-
"description": "
|
|
2895
|
+
"description": "Create a new workspace if it does not exist.",
|
|
2952
2896
|
"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"
|
|
2897
|
+
"<%= config.bin %> <%= command.id %> dev"
|
|
2956
2898
|
],
|
|
2957
2899
|
"flags": {
|
|
2958
|
-
"
|
|
2900
|
+
"deployment": {
|
|
2959
2901
|
"char": "d",
|
|
2960
|
-
"description": "workspace
|
|
2961
|
-
"name": "
|
|
2902
|
+
"description": "mark workspace as a deployment workspace",
|
|
2903
|
+
"name": "deployment",
|
|
2962
2904
|
"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",
|
|
2971
2905
|
"allowNo": false,
|
|
2972
2906
|
"type": "boolean"
|
|
2973
2907
|
},
|
|
2974
|
-
"
|
|
2975
|
-
"
|
|
2976
|
-
"
|
|
2977
|
-
"name": "parameter",
|
|
2908
|
+
"mirror": {
|
|
2909
|
+
"description": "workspace to mirror",
|
|
2910
|
+
"name": "mirror",
|
|
2978
2911
|
"required": false,
|
|
2979
|
-
"default": [],
|
|
2980
2912
|
"hasDynamicHelp": false,
|
|
2981
|
-
"multiple":
|
|
2913
|
+
"multiple": false,
|
|
2982
2914
|
"type": "option"
|
|
2983
2915
|
},
|
|
2984
|
-
"
|
|
2985
|
-
"
|
|
2986
|
-
"
|
|
2987
|
-
"name": "template",
|
|
2916
|
+
"profile": {
|
|
2917
|
+
"description": "workspace profile to set (cloud backend only)",
|
|
2918
|
+
"name": "profile",
|
|
2988
2919
|
"required": false,
|
|
2989
2920
|
"hasDynamicHelp": false,
|
|
2990
2921
|
"multiple": false,
|
|
2991
2922
|
"type": "option"
|
|
2923
|
+
}
|
|
2924
|
+
},
|
|
2925
|
+
"hasDynamicHelp": false,
|
|
2926
|
+
"hiddenAliases": [],
|
|
2927
|
+
"id": "workspace:create",
|
|
2928
|
+
"pluginAlias": "hereya-cli",
|
|
2929
|
+
"pluginName": "hereya-cli",
|
|
2930
|
+
"pluginType": "core",
|
|
2931
|
+
"strict": true,
|
|
2932
|
+
"enableJsonFlag": false,
|
|
2933
|
+
"isESM": true,
|
|
2934
|
+
"relativePath": [
|
|
2935
|
+
"dist",
|
|
2936
|
+
"commands",
|
|
2937
|
+
"workspace",
|
|
2938
|
+
"create",
|
|
2939
|
+
"index.js"
|
|
2940
|
+
]
|
|
2941
|
+
},
|
|
2942
|
+
"devenv:project:uninit": {
|
|
2943
|
+
"aliases": [],
|
|
2944
|
+
"args": {
|
|
2945
|
+
"project": {
|
|
2946
|
+
"description": "project name",
|
|
2947
|
+
"name": "project",
|
|
2948
|
+
"required": true
|
|
2949
|
+
}
|
|
2950
|
+
},
|
|
2951
|
+
"description": "Uninitialize a project on a remote dev environment.",
|
|
2952
|
+
"examples": [
|
|
2953
|
+
"<%= config.bin %> <%= command.id %> my-app -w my-workspace",
|
|
2954
|
+
"<%= config.bin %> <%= command.id %> my-app -w my-workspace --force"
|
|
2955
|
+
],
|
|
2956
|
+
"flags": {
|
|
2957
|
+
"force": {
|
|
2958
|
+
"char": "f",
|
|
2959
|
+
"description": "also remove the project directory after uninit",
|
|
2960
|
+
"name": "force",
|
|
2961
|
+
"allowNo": false,
|
|
2962
|
+
"type": "boolean"
|
|
2992
2963
|
},
|
|
2993
2964
|
"workspace": {
|
|
2994
2965
|
"char": "w",
|
|
@@ -3002,7 +2973,7 @@
|
|
|
3002
2973
|
},
|
|
3003
2974
|
"hasDynamicHelp": false,
|
|
3004
2975
|
"hiddenAliases": [],
|
|
3005
|
-
"id": "devenv:project:
|
|
2976
|
+
"id": "devenv:project:uninit",
|
|
3006
2977
|
"pluginAlias": "hereya-cli",
|
|
3007
2978
|
"pluginName": "hereya-cli",
|
|
3008
2979
|
"pluginType": "core",
|
|
@@ -3014,11 +2985,11 @@
|
|
|
3014
2985
|
"commands",
|
|
3015
2986
|
"devenv",
|
|
3016
2987
|
"project",
|
|
3017
|
-
"
|
|
2988
|
+
"uninit",
|
|
3018
2989
|
"index.js"
|
|
3019
2990
|
]
|
|
3020
2991
|
},
|
|
3021
|
-
"devenv:project:
|
|
2992
|
+
"devenv:project:init": {
|
|
3022
2993
|
"aliases": [],
|
|
3023
2994
|
"args": {
|
|
3024
2995
|
"project": {
|
|
@@ -3027,19 +2998,48 @@
|
|
|
3027
2998
|
"required": true
|
|
3028
2999
|
}
|
|
3029
3000
|
},
|
|
3030
|
-
"description": "
|
|
3001
|
+
"description": "Initialize a project on a remote dev environment.",
|
|
3031
3002
|
"examples": [
|
|
3032
3003
|
"<%= config.bin %> <%= command.id %> my-app -w my-workspace",
|
|
3033
|
-
"<%= config.bin %> <%= command.id %> my-app -w my-workspace
|
|
3004
|
+
"<%= config.bin %> <%= command.id %> my-app -w my-workspace -t acme/node-starter",
|
|
3005
|
+
"<%= config.bin %> <%= command.id %> my-app -w my-workspace -t acme/node-starter -p region=us-east-1"
|
|
3034
3006
|
],
|
|
3035
3007
|
"flags": {
|
|
3008
|
+
"deploy-workspace": {
|
|
3009
|
+
"char": "d",
|
|
3010
|
+
"description": "workspace used for deployment (required when using a template)",
|
|
3011
|
+
"name": "deploy-workspace",
|
|
3012
|
+
"required": false,
|
|
3013
|
+
"hasDynamicHelp": false,
|
|
3014
|
+
"multiple": false,
|
|
3015
|
+
"type": "option"
|
|
3016
|
+
},
|
|
3036
3017
|
"force": {
|
|
3037
3018
|
"char": "f",
|
|
3038
|
-
"description": "
|
|
3019
|
+
"description": "continue even if folder already exists",
|
|
3039
3020
|
"name": "force",
|
|
3040
3021
|
"allowNo": false,
|
|
3041
3022
|
"type": "boolean"
|
|
3042
3023
|
},
|
|
3024
|
+
"parameter": {
|
|
3025
|
+
"char": "p",
|
|
3026
|
+
"description": "parameter for the template, in the form of 'key=value'. Can be specified multiple times.",
|
|
3027
|
+
"name": "parameter",
|
|
3028
|
+
"required": false,
|
|
3029
|
+
"default": [],
|
|
3030
|
+
"hasDynamicHelp": false,
|
|
3031
|
+
"multiple": true,
|
|
3032
|
+
"type": "option"
|
|
3033
|
+
},
|
|
3034
|
+
"template": {
|
|
3035
|
+
"char": "t",
|
|
3036
|
+
"description": "template package to scaffold the project from",
|
|
3037
|
+
"name": "template",
|
|
3038
|
+
"required": false,
|
|
3039
|
+
"hasDynamicHelp": false,
|
|
3040
|
+
"multiple": false,
|
|
3041
|
+
"type": "option"
|
|
3042
|
+
},
|
|
3043
3043
|
"workspace": {
|
|
3044
3044
|
"char": "w",
|
|
3045
3045
|
"description": "name of the workspace",
|
|
@@ -3052,7 +3052,7 @@
|
|
|
3052
3052
|
},
|
|
3053
3053
|
"hasDynamicHelp": false,
|
|
3054
3054
|
"hiddenAliases": [],
|
|
3055
|
-
"id": "devenv:project:
|
|
3055
|
+
"id": "devenv:project:init",
|
|
3056
3056
|
"pluginAlias": "hereya-cli",
|
|
3057
3057
|
"pluginName": "hereya-cli",
|
|
3058
3058
|
"pluginType": "core",
|
|
@@ -3064,7 +3064,7 @@
|
|
|
3064
3064
|
"commands",
|
|
3065
3065
|
"devenv",
|
|
3066
3066
|
"project",
|
|
3067
|
-
"
|
|
3067
|
+
"init",
|
|
3068
3068
|
"index.js"
|
|
3069
3069
|
]
|
|
3070
3070
|
},
|
|
@@ -3409,5 +3409,5 @@
|
|
|
3409
3409
|
]
|
|
3410
3410
|
}
|
|
3411
3411
|
},
|
|
3412
|
-
"version": "0.
|
|
3412
|
+
"version": "0.101.0"
|
|
3413
3413
|
}
|