hereya-cli 0.99.0 → 0.100.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 +77 -77
- package/dist/commands/app/list/index.js +1 -0
- package/dist/commands/config/get-backend/index.js +1 -0
- package/dist/commands/list/index.js +1 -0
- package/oclif.manifest.json +221 -221
- package/package.json +53 -34
|
@@ -5,6 +5,7 @@ export default class AppList extends Command {
|
|
|
5
5
|
static description = 'List hereya-apps available to your account.';
|
|
6
6
|
static examples = ['<%= config.bin %> <%= command.id %>'];
|
|
7
7
|
async run() {
|
|
8
|
+
await this.parse(AppList);
|
|
8
9
|
const backend = await getBackend();
|
|
9
10
|
if (!(backend instanceof CloudBackend)) {
|
|
10
11
|
this.error('Listing apps requires the cloud backend. Run `hereya login` first.');
|
|
@@ -4,6 +4,7 @@ export default class List extends Command {
|
|
|
4
4
|
static description = 'List your projects.';
|
|
5
5
|
static examples = ['<%= config.bin %> <%= command.id %>'];
|
|
6
6
|
async run() {
|
|
7
|
+
await this.parse(List);
|
|
7
8
|
try {
|
|
8
9
|
const backend = await getBackend();
|
|
9
10
|
if (!backend.listProjects) {
|
package/oclif.manifest.json
CHANGED
|
@@ -63,32 +63,33 @@
|
|
|
63
63
|
"index.js"
|
|
64
64
|
]
|
|
65
65
|
},
|
|
66
|
-
"
|
|
66
|
+
"clone": {
|
|
67
67
|
"aliases": [],
|
|
68
68
|
"args": {
|
|
69
|
-
"
|
|
70
|
-
"description": "
|
|
71
|
-
"name": "
|
|
69
|
+
"project": {
|
|
70
|
+
"description": "project name",
|
|
71
|
+
"name": "project",
|
|
72
72
|
"required": true
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
|
-
"description": "
|
|
75
|
+
"description": "Clone an existing template-based project to the local machine.",
|
|
76
76
|
"examples": [
|
|
77
|
-
"<%= config.bin %> <%= command.id %>
|
|
78
|
-
"<%= config.bin %> <%= command.id %>
|
|
77
|
+
"<%= config.bin %> <%= command.id %> myProject",
|
|
78
|
+
"<%= config.bin %> <%= command.id %> myProject --chdir=./myProject"
|
|
79
79
|
],
|
|
80
80
|
"flags": {
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
81
|
+
"chdir": {
|
|
82
|
+
"description": "directory to clone into",
|
|
83
|
+
"name": "chdir",
|
|
84
|
+
"required": false,
|
|
85
|
+
"hasDynamicHelp": false,
|
|
86
|
+
"multiple": false,
|
|
87
|
+
"type": "option"
|
|
87
88
|
}
|
|
88
89
|
},
|
|
89
90
|
"hasDynamicHelp": false,
|
|
90
91
|
"hiddenAliases": [],
|
|
91
|
-
"id": "
|
|
92
|
+
"id": "clone",
|
|
92
93
|
"pluginAlias": "hereya-cli",
|
|
93
94
|
"pluginName": "hereya-cli",
|
|
94
95
|
"pluginType": "core",
|
|
@@ -98,37 +99,36 @@
|
|
|
98
99
|
"relativePath": [
|
|
99
100
|
"dist",
|
|
100
101
|
"commands",
|
|
101
|
-
"
|
|
102
|
+
"clone",
|
|
102
103
|
"index.js"
|
|
103
104
|
]
|
|
104
105
|
},
|
|
105
|
-
"
|
|
106
|
+
"bootstrap": {
|
|
106
107
|
"aliases": [],
|
|
107
108
|
"args": {
|
|
108
|
-
"
|
|
109
|
-
"description": "
|
|
110
|
-
"name": "
|
|
109
|
+
"infrastructureType": {
|
|
110
|
+
"description": "infrastructure to bootstrap. Options are local, aws",
|
|
111
|
+
"name": "infrastructureType",
|
|
111
112
|
"required": true
|
|
112
113
|
}
|
|
113
114
|
},
|
|
114
|
-
"description": "
|
|
115
|
+
"description": "Install necessary resources for hereya operations in an infrastructure.",
|
|
115
116
|
"examples": [
|
|
116
|
-
"<%= config.bin %> <%= command.id %>
|
|
117
|
-
"<%= config.bin %> <%= command.id %>
|
|
117
|
+
"<%= config.bin %> <%= command.id %> aws",
|
|
118
|
+
"<%= config.bin %> <%= command.id %> local"
|
|
118
119
|
],
|
|
119
120
|
"flags": {
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"type": "option"
|
|
121
|
+
"force": {
|
|
122
|
+
"char": "f",
|
|
123
|
+
"description": "redeploy hereya resources if already deployed",
|
|
124
|
+
"name": "force",
|
|
125
|
+
"allowNo": false,
|
|
126
|
+
"type": "boolean"
|
|
127
127
|
}
|
|
128
128
|
},
|
|
129
129
|
"hasDynamicHelp": false,
|
|
130
130
|
"hiddenAliases": [],
|
|
131
|
-
"id": "
|
|
131
|
+
"id": "bootstrap",
|
|
132
132
|
"pluginAlias": "hereya-cli",
|
|
133
133
|
"pluginName": "hereya-cli",
|
|
134
134
|
"pluginType": "core",
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"relativePath": [
|
|
139
139
|
"dist",
|
|
140
140
|
"commands",
|
|
141
|
-
"
|
|
141
|
+
"bootstrap",
|
|
142
142
|
"index.js"
|
|
143
143
|
]
|
|
144
144
|
},
|
|
@@ -1736,80 +1736,6 @@
|
|
|
1736
1736
|
"index.js"
|
|
1737
1737
|
]
|
|
1738
1738
|
},
|
|
1739
|
-
"devenv:install": {
|
|
1740
|
-
"aliases": [],
|
|
1741
|
-
"args": {},
|
|
1742
|
-
"description": "Provision a remote dev environment on a workspace.",
|
|
1743
|
-
"examples": [
|
|
1744
|
-
"<%= config.bin %> <%= command.id %> -w my-workspace -p instanceType=t3.large"
|
|
1745
|
-
],
|
|
1746
|
-
"flags": {
|
|
1747
|
-
"debug": {
|
|
1748
|
-
"description": "enable debug mode",
|
|
1749
|
-
"name": "debug",
|
|
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",
|
|
1756
|
-
"required": false,
|
|
1757
|
-
"hasDynamicHelp": false,
|
|
1758
|
-
"multiple": false,
|
|
1759
|
-
"type": "option"
|
|
1760
|
-
},
|
|
1761
|
-
"parameter": {
|
|
1762
|
-
"char": "p",
|
|
1763
|
-
"description": "parameter for the package, in the form of 'key=value'. Can be specified multiple times.",
|
|
1764
|
-
"name": "parameter",
|
|
1765
|
-
"default": [],
|
|
1766
|
-
"hasDynamicHelp": false,
|
|
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
1739
|
"devenv:sleep": {
|
|
1814
1740
|
"aliases": [],
|
|
1815
1741
|
"args": {},
|
|
@@ -2203,36 +2129,34 @@
|
|
|
2203
2129
|
"index.js"
|
|
2204
2130
|
]
|
|
2205
2131
|
},
|
|
2206
|
-
"flow:
|
|
2132
|
+
"flow:down": {
|
|
2207
2133
|
"aliases": [],
|
|
2208
|
-
"args": {
|
|
2209
|
-
|
|
2210
|
-
"description": "name of the env to display",
|
|
2211
|
-
"name": "name",
|
|
2212
|
-
"required": false
|
|
2213
|
-
}
|
|
2214
|
-
},
|
|
2215
|
-
"description": "Print project environment variables for a git branch-based workspace",
|
|
2134
|
+
"args": {},
|
|
2135
|
+
"description": "Create a git branch-based workspace and destroy all packages",
|
|
2216
2136
|
"examples": [
|
|
2217
2137
|
"<%= config.bin %> <%= command.id %>",
|
|
2218
|
-
"<%= config.bin %> <%= command.id %>
|
|
2138
|
+
"<%= config.bin %> <%= command.id %> --debug",
|
|
2219
2139
|
"<%= config.bin %> <%= command.id %> --profile staging",
|
|
2220
|
-
"<%= config.bin %> <%= command.id %> --pin"
|
|
2221
|
-
"<%= config.bin %> <%= command.id %> -l"
|
|
2140
|
+
"<%= config.bin %> <%= command.id %> --pin"
|
|
2222
2141
|
],
|
|
2223
2142
|
"flags": {
|
|
2224
2143
|
"chdir": {
|
|
2225
|
-
"description": "project root
|
|
2144
|
+
"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 ",
|
|
2226
2145
|
"name": "chdir",
|
|
2227
2146
|
"required": false,
|
|
2228
2147
|
"hasDynamicHelp": false,
|
|
2229
2148
|
"multiple": false,
|
|
2230
2149
|
"type": "option"
|
|
2231
2150
|
},
|
|
2232
|
-
"
|
|
2233
|
-
"
|
|
2234
|
-
"
|
|
2235
|
-
"
|
|
2151
|
+
"debug": {
|
|
2152
|
+
"description": "enable debug mode",
|
|
2153
|
+
"name": "debug",
|
|
2154
|
+
"allowNo": false,
|
|
2155
|
+
"type": "boolean"
|
|
2156
|
+
},
|
|
2157
|
+
"deploy": {
|
|
2158
|
+
"description": "destroy deployment companion packages",
|
|
2159
|
+
"name": "deploy",
|
|
2236
2160
|
"required": false,
|
|
2237
2161
|
"allowNo": false,
|
|
2238
2162
|
"type": "boolean"
|
|
@@ -2251,11 +2175,20 @@
|
|
|
2251
2175
|
"hasDynamicHelp": false,
|
|
2252
2176
|
"multiple": false,
|
|
2253
2177
|
"type": "option"
|
|
2178
|
+
},
|
|
2179
|
+
"select": {
|
|
2180
|
+
"char": "s",
|
|
2181
|
+
"description": "select the packages to destroy",
|
|
2182
|
+
"name": "select",
|
|
2183
|
+
"default": [],
|
|
2184
|
+
"hasDynamicHelp": false,
|
|
2185
|
+
"multiple": true,
|
|
2186
|
+
"type": "option"
|
|
2254
2187
|
}
|
|
2255
2188
|
},
|
|
2256
2189
|
"hasDynamicHelp": false,
|
|
2257
2190
|
"hiddenAliases": [],
|
|
2258
|
-
"id": "flow:
|
|
2191
|
+
"id": "flow:down",
|
|
2259
2192
|
"pluginAlias": "hereya-cli",
|
|
2260
2193
|
"pluginName": "hereya-cli",
|
|
2261
2194
|
"pluginType": "core",
|
|
@@ -2266,38 +2199,40 @@
|
|
|
2266
2199
|
"dist",
|
|
2267
2200
|
"commands",
|
|
2268
2201
|
"flow",
|
|
2269
|
-
"
|
|
2202
|
+
"down",
|
|
2270
2203
|
"index.js"
|
|
2271
2204
|
]
|
|
2272
2205
|
},
|
|
2273
|
-
"flow:
|
|
2206
|
+
"flow:env": {
|
|
2274
2207
|
"aliases": [],
|
|
2275
|
-
"args": {
|
|
2276
|
-
|
|
2208
|
+
"args": {
|
|
2209
|
+
"name": {
|
|
2210
|
+
"description": "name of the env to display",
|
|
2211
|
+
"name": "name",
|
|
2212
|
+
"required": false
|
|
2213
|
+
}
|
|
2214
|
+
},
|
|
2215
|
+
"description": "Print project environment variables for a git branch-based workspace",
|
|
2277
2216
|
"examples": [
|
|
2278
2217
|
"<%= config.bin %> <%= command.id %>",
|
|
2279
|
-
"<%= config.bin %> <%= command.id %>
|
|
2218
|
+
"<%= config.bin %> <%= command.id %> myEnv",
|
|
2280
2219
|
"<%= config.bin %> <%= command.id %> --profile staging",
|
|
2281
|
-
"<%= config.bin %> <%= command.id %> --pin"
|
|
2220
|
+
"<%= config.bin %> <%= command.id %> --pin",
|
|
2221
|
+
"<%= config.bin %> <%= command.id %> -l"
|
|
2282
2222
|
],
|
|
2283
2223
|
"flags": {
|
|
2284
2224
|
"chdir": {
|
|
2285
|
-
"description": "
|
|
2225
|
+
"description": "project root directory",
|
|
2286
2226
|
"name": "chdir",
|
|
2287
2227
|
"required": false,
|
|
2288
2228
|
"hasDynamicHelp": false,
|
|
2289
2229
|
"multiple": false,
|
|
2290
2230
|
"type": "option"
|
|
2291
2231
|
},
|
|
2292
|
-
"
|
|
2293
|
-
"
|
|
2294
|
-
"
|
|
2295
|
-
"
|
|
2296
|
-
"type": "boolean"
|
|
2297
|
-
},
|
|
2298
|
-
"deploy": {
|
|
2299
|
-
"description": "destroy deployment companion packages",
|
|
2300
|
-
"name": "deploy",
|
|
2232
|
+
"list": {
|
|
2233
|
+
"char": "l",
|
|
2234
|
+
"description": "list only the env vars without values",
|
|
2235
|
+
"name": "list",
|
|
2301
2236
|
"required": false,
|
|
2302
2237
|
"allowNo": false,
|
|
2303
2238
|
"type": "boolean"
|
|
@@ -2316,20 +2251,11 @@
|
|
|
2316
2251
|
"hasDynamicHelp": false,
|
|
2317
2252
|
"multiple": false,
|
|
2318
2253
|
"type": "option"
|
|
2319
|
-
},
|
|
2320
|
-
"select": {
|
|
2321
|
-
"char": "s",
|
|
2322
|
-
"description": "select the packages to destroy",
|
|
2323
|
-
"name": "select",
|
|
2324
|
-
"default": [],
|
|
2325
|
-
"hasDynamicHelp": false,
|
|
2326
|
-
"multiple": true,
|
|
2327
|
-
"type": "option"
|
|
2328
2254
|
}
|
|
2329
2255
|
},
|
|
2330
2256
|
"hasDynamicHelp": false,
|
|
2331
2257
|
"hiddenAliases": [],
|
|
2332
|
-
"id": "flow:
|
|
2258
|
+
"id": "flow:env",
|
|
2333
2259
|
"pluginAlias": "hereya-cli",
|
|
2334
2260
|
"pluginName": "hereya-cli",
|
|
2335
2261
|
"pluginType": "core",
|
|
@@ -2340,7 +2266,7 @@
|
|
|
2340
2266
|
"dist",
|
|
2341
2267
|
"commands",
|
|
2342
2268
|
"flow",
|
|
2343
|
-
"
|
|
2269
|
+
"env",
|
|
2344
2270
|
"index.js"
|
|
2345
2271
|
]
|
|
2346
2272
|
},
|
|
@@ -2588,40 +2514,58 @@
|
|
|
2588
2514
|
"index.js"
|
|
2589
2515
|
]
|
|
2590
2516
|
},
|
|
2591
|
-
"
|
|
2517
|
+
"devenv:install": {
|
|
2592
2518
|
"aliases": [],
|
|
2593
|
-
"args": {
|
|
2594
|
-
|
|
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.",
|
|
2519
|
+
"args": {},
|
|
2520
|
+
"description": "Provision a remote dev environment on a workspace.",
|
|
2601
2521
|
"examples": [
|
|
2602
|
-
"<%= config.bin %> <%= command.id %>
|
|
2522
|
+
"<%= config.bin %> <%= command.id %> -w my-workspace -p instanceType=t3.large"
|
|
2603
2523
|
],
|
|
2604
2524
|
"flags": {
|
|
2605
|
-
"
|
|
2606
|
-
"
|
|
2607
|
-
"
|
|
2608
|
-
"name": "deployment",
|
|
2609
|
-
"required": false,
|
|
2525
|
+
"debug": {
|
|
2526
|
+
"description": "enable debug mode",
|
|
2527
|
+
"name": "debug",
|
|
2610
2528
|
"allowNo": false,
|
|
2611
2529
|
"type": "boolean"
|
|
2612
2530
|
},
|
|
2613
|
-
"
|
|
2614
|
-
"description": "
|
|
2615
|
-
"name": "
|
|
2531
|
+
"on-behalf-of": {
|
|
2532
|
+
"description": "email of an org member to install the devenv for; the baked Hereya token will carry their identity (requires OWNER or ADMIN role)",
|
|
2533
|
+
"name": "on-behalf-of",
|
|
2616
2534
|
"required": false,
|
|
2617
2535
|
"hasDynamicHelp": false,
|
|
2618
2536
|
"multiple": false,
|
|
2619
2537
|
"type": "option"
|
|
2620
2538
|
},
|
|
2621
|
-
"
|
|
2622
|
-
"
|
|
2623
|
-
"
|
|
2624
|
-
"
|
|
2539
|
+
"parameter": {
|
|
2540
|
+
"char": "p",
|
|
2541
|
+
"description": "parameter for the package, in the form of 'key=value'. Can be specified multiple times.",
|
|
2542
|
+
"name": "parameter",
|
|
2543
|
+
"default": [],
|
|
2544
|
+
"hasDynamicHelp": false,
|
|
2545
|
+
"multiple": true,
|
|
2546
|
+
"type": "option"
|
|
2547
|
+
},
|
|
2548
|
+
"parameter-file": {
|
|
2549
|
+
"char": "f",
|
|
2550
|
+
"description": "path to a file containing parameters for the package",
|
|
2551
|
+
"name": "parameter-file",
|
|
2552
|
+
"hasDynamicHelp": false,
|
|
2553
|
+
"multiple": false,
|
|
2554
|
+
"type": "option"
|
|
2555
|
+
},
|
|
2556
|
+
"version": {
|
|
2557
|
+
"char": "v",
|
|
2558
|
+
"description": "version of the dev environment package",
|
|
2559
|
+
"name": "version",
|
|
2560
|
+
"hasDynamicHelp": false,
|
|
2561
|
+
"multiple": false,
|
|
2562
|
+
"type": "option"
|
|
2563
|
+
},
|
|
2564
|
+
"workspace": {
|
|
2565
|
+
"char": "w",
|
|
2566
|
+
"description": "name of the workspace to provision the dev environment on",
|
|
2567
|
+
"name": "workspace",
|
|
2568
|
+
"required": true,
|
|
2625
2569
|
"hasDynamicHelp": false,
|
|
2626
2570
|
"multiple": false,
|
|
2627
2571
|
"type": "option"
|
|
@@ -2629,7 +2573,7 @@
|
|
|
2629
2573
|
},
|
|
2630
2574
|
"hasDynamicHelp": false,
|
|
2631
2575
|
"hiddenAliases": [],
|
|
2632
|
-
"id": "
|
|
2576
|
+
"id": "devenv:install",
|
|
2633
2577
|
"pluginAlias": "hereya-cli",
|
|
2634
2578
|
"pluginName": "hereya-cli",
|
|
2635
2579
|
"pluginType": "core",
|
|
@@ -2639,8 +2583,8 @@
|
|
|
2639
2583
|
"relativePath": [
|
|
2640
2584
|
"dist",
|
|
2641
2585
|
"commands",
|
|
2642
|
-
"
|
|
2643
|
-
"
|
|
2586
|
+
"devenv",
|
|
2587
|
+
"install",
|
|
2644
2588
|
"index.js"
|
|
2645
2589
|
]
|
|
2646
2590
|
},
|
|
@@ -2939,6 +2883,62 @@
|
|
|
2939
2883
|
"index.js"
|
|
2940
2884
|
]
|
|
2941
2885
|
},
|
|
2886
|
+
"workspace:create": {
|
|
2887
|
+
"aliases": [],
|
|
2888
|
+
"args": {
|
|
2889
|
+
"name": {
|
|
2890
|
+
"description": "name of the workspace to create",
|
|
2891
|
+
"name": "name",
|
|
2892
|
+
"required": true
|
|
2893
|
+
}
|
|
2894
|
+
},
|
|
2895
|
+
"description": "Create a new workspace if it does not exist.",
|
|
2896
|
+
"examples": [
|
|
2897
|
+
"<%= config.bin %> <%= command.id %> dev"
|
|
2898
|
+
],
|
|
2899
|
+
"flags": {
|
|
2900
|
+
"deployment": {
|
|
2901
|
+
"char": "d",
|
|
2902
|
+
"description": "mark workspace as a deployment workspace",
|
|
2903
|
+
"name": "deployment",
|
|
2904
|
+
"required": false,
|
|
2905
|
+
"allowNo": false,
|
|
2906
|
+
"type": "boolean"
|
|
2907
|
+
},
|
|
2908
|
+
"mirror": {
|
|
2909
|
+
"description": "workspace to mirror",
|
|
2910
|
+
"name": "mirror",
|
|
2911
|
+
"required": false,
|
|
2912
|
+
"hasDynamicHelp": false,
|
|
2913
|
+
"multiple": false,
|
|
2914
|
+
"type": "option"
|
|
2915
|
+
},
|
|
2916
|
+
"profile": {
|
|
2917
|
+
"description": "workspace profile to set (cloud backend only)",
|
|
2918
|
+
"name": "profile",
|
|
2919
|
+
"required": false,
|
|
2920
|
+
"hasDynamicHelp": false,
|
|
2921
|
+
"multiple": false,
|
|
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
2942
|
"devenv:project:init": {
|
|
2943
2943
|
"aliases": [],
|
|
2944
2944
|
"args": {
|
|
@@ -3206,51 +3206,6 @@
|
|
|
3206
3206
|
"index.js"
|
|
3207
3207
|
]
|
|
3208
3208
|
},
|
|
3209
|
-
"workspace:env:unset": {
|
|
3210
|
-
"aliases": [],
|
|
3211
|
-
"args": {},
|
|
3212
|
-
"description": "unset an env var for a workspace",
|
|
3213
|
-
"examples": [
|
|
3214
|
-
"<%= config.bin %> <%= command.id %> -w my-workspace -n myVar"
|
|
3215
|
-
],
|
|
3216
|
-
"flags": {
|
|
3217
|
-
"name": {
|
|
3218
|
-
"char": "n",
|
|
3219
|
-
"description": "name of the env var to unset",
|
|
3220
|
-
"name": "name",
|
|
3221
|
-
"required": true,
|
|
3222
|
-
"hasDynamicHelp": false,
|
|
3223
|
-
"multiple": false,
|
|
3224
|
-
"type": "option"
|
|
3225
|
-
},
|
|
3226
|
-
"workspace": {
|
|
3227
|
-
"char": "w",
|
|
3228
|
-
"description": "name of the workspace to unset an env var for",
|
|
3229
|
-
"name": "workspace",
|
|
3230
|
-
"required": true,
|
|
3231
|
-
"hasDynamicHelp": false,
|
|
3232
|
-
"multiple": false,
|
|
3233
|
-
"type": "option"
|
|
3234
|
-
}
|
|
3235
|
-
},
|
|
3236
|
-
"hasDynamicHelp": false,
|
|
3237
|
-
"hiddenAliases": [],
|
|
3238
|
-
"id": "workspace:env:unset",
|
|
3239
|
-
"pluginAlias": "hereya-cli",
|
|
3240
|
-
"pluginName": "hereya-cli",
|
|
3241
|
-
"pluginType": "core",
|
|
3242
|
-
"strict": true,
|
|
3243
|
-
"enableJsonFlag": false,
|
|
3244
|
-
"isESM": true,
|
|
3245
|
-
"relativePath": [
|
|
3246
|
-
"dist",
|
|
3247
|
-
"commands",
|
|
3248
|
-
"workspace",
|
|
3249
|
-
"env",
|
|
3250
|
-
"unset",
|
|
3251
|
-
"index.js"
|
|
3252
|
-
]
|
|
3253
|
-
},
|
|
3254
3209
|
"workspace:executor:install": {
|
|
3255
3210
|
"aliases": [],
|
|
3256
3211
|
"args": {},
|
|
@@ -3407,7 +3362,52 @@
|
|
|
3407
3362
|
"uninstall",
|
|
3408
3363
|
"index.js"
|
|
3409
3364
|
]
|
|
3365
|
+
},
|
|
3366
|
+
"workspace:env:unset": {
|
|
3367
|
+
"aliases": [],
|
|
3368
|
+
"args": {},
|
|
3369
|
+
"description": "unset an env var for a workspace",
|
|
3370
|
+
"examples": [
|
|
3371
|
+
"<%= config.bin %> <%= command.id %> -w my-workspace -n myVar"
|
|
3372
|
+
],
|
|
3373
|
+
"flags": {
|
|
3374
|
+
"name": {
|
|
3375
|
+
"char": "n",
|
|
3376
|
+
"description": "name of the env var to unset",
|
|
3377
|
+
"name": "name",
|
|
3378
|
+
"required": true,
|
|
3379
|
+
"hasDynamicHelp": false,
|
|
3380
|
+
"multiple": false,
|
|
3381
|
+
"type": "option"
|
|
3382
|
+
},
|
|
3383
|
+
"workspace": {
|
|
3384
|
+
"char": "w",
|
|
3385
|
+
"description": "name of the workspace to unset an env var for",
|
|
3386
|
+
"name": "workspace",
|
|
3387
|
+
"required": true,
|
|
3388
|
+
"hasDynamicHelp": false,
|
|
3389
|
+
"multiple": false,
|
|
3390
|
+
"type": "option"
|
|
3391
|
+
}
|
|
3392
|
+
},
|
|
3393
|
+
"hasDynamicHelp": false,
|
|
3394
|
+
"hiddenAliases": [],
|
|
3395
|
+
"id": "workspace:env:unset",
|
|
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
|
+
"workspace",
|
|
3406
|
+
"env",
|
|
3407
|
+
"unset",
|
|
3408
|
+
"index.js"
|
|
3409
|
+
]
|
|
3410
3410
|
}
|
|
3411
3411
|
},
|
|
3412
|
-
"version": "0.
|
|
3412
|
+
"version": "0.100.0"
|
|
3413
3413
|
}
|