@strapi/cloud-cli 0.0.0-next.d7fa025a4eacdc27490fb1629b0efb93e3cb58b9 → 0.0.0-next.ea6e3b80ab37f554da4f8bde08dbfe9b57400d31

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/dist/index.mjs CHANGED
@@ -1,6 +1,7 @@
1
1
  import crypto$1 from "crypto";
2
2
  import * as fse from "fs-extra";
3
3
  import fse__default from "fs-extra";
4
+ import inquirer from "inquirer";
4
5
  import * as path from "path";
5
6
  import path__default from "path";
6
7
  import chalk from "chalk";
@@ -9,7 +10,6 @@ import * as crypto from "node:crypto";
9
10
  import { env } from "@strapi/utils";
10
11
  import * as tar from "tar";
11
12
  import { minimatch } from "minimatch";
12
- import inquirer from "inquirer";
13
13
  import { defaults, has } from "lodash/fp";
14
14
  import os from "os";
15
15
  import XDGAppPaths from "xdg-app-paths";
@@ -21,6 +21,7 @@ import * as cliProgress from "cli-progress";
21
21
  import pkgUp from "pkg-up";
22
22
  import * as yup from "yup";
23
23
  import EventSource from "eventsource";
24
+ import { createCommand } from "commander";
24
25
  const apiConfig = {
25
26
  apiBaseUrl: env("STRAPI_CLI_CLOUD_API", "https://cloud-cli-api.strapi.io"),
26
27
  dashboardBaseUrl: env("STRAPI_CLI_CLOUD_DASHBOARD", "https://cloud.strapi.io")
@@ -133,7 +134,7 @@ async function saveLocalConfig(data) {
133
134
  await fse__default.writeJson(configFilePath, data, { encoding: "utf8", spaces: 2, mode: 384 });
134
135
  }
135
136
  const name = "@strapi/cloud-cli";
136
- const version = "4.25.7";
137
+ const version = "5.3.0";
137
138
  const description = "Commands to interact with the Strapi Cloud";
138
139
  const keywords = [
139
140
  "strapi",
@@ -178,14 +179,14 @@ const scripts = {
178
179
  watch: "pack-up watch"
179
180
  };
180
181
  const dependencies = {
181
- "@strapi/utils": "4.25.7",
182
- axios: "1.6.0",
182
+ "@strapi/utils": "workspace:*",
183
+ axios: "1.7.4",
183
184
  chalk: "4.1.2",
184
185
  "cli-progress": "3.12.0",
185
186
  commander: "8.3.0",
186
187
  eventsource: "2.0.2",
187
188
  "fast-safe-stringify": "2.1.1",
188
- "fs-extra": "10.0.0",
189
+ "fs-extra": "11.2.0",
189
190
  inquirer: "8.2.5",
190
191
  jsonwebtoken: "9.0.0",
191
192
  "jwks-rsa": "3.1.0",
@@ -194,7 +195,7 @@ const dependencies = {
194
195
  open: "8.4.0",
195
196
  ora: "5.4.1",
196
197
  "pkg-up": "3.1.0",
197
- tar: "6.1.13",
198
+ tar: "6.2.1",
198
199
  "xdg-app-paths": "8.3.0",
199
200
  yup: "0.32.9"
200
201
  };
@@ -203,11 +204,11 @@ const devDependencies = {
203
204
  "@types/cli-progress": "3.11.5",
204
205
  "@types/eventsource": "1.1.15",
205
206
  "@types/lodash": "^4.14.191",
206
- "eslint-config-custom": "4.25.7",
207
- tsconfig: "4.25.7"
207
+ "eslint-config-custom": "workspace:*",
208
+ tsconfig: "workspace:*"
208
209
  };
209
210
  const engines = {
210
- node: ">=18.0.0 <=20.x.x",
211
+ node: ">=18.0.0 <=22.x.x",
211
212
  npm: ">=6.0.0"
212
213
  };
213
214
  const packageJson = {
@@ -257,7 +258,7 @@ async function cloudApiFactory({ logger }, token) {
257
258
  deploy({ filePath, project }, { onUploadProgress }) {
258
259
  return axiosCloudAPI.post(
259
260
  `/deploy/${project.name}`,
260
- { file: fse__default.createReadStream(filePath) },
261
+ { file: fse__default.createReadStream(filePath), targetEnvironment: project.targetEnvironment },
261
262
  {
262
263
  headers: {
263
264
  "Content-Type": "multipart/form-data"
@@ -316,7 +317,7 @@ async function cloudApiFactory({ logger }, token) {
316
317
  },
317
318
  async listLinkProjects() {
318
319
  try {
319
- const response = await axiosCloudAPI.get("/projects/linkable");
320
+ const response = await axiosCloudAPI.get("/projects-linkable");
320
321
  if (response.status !== 200) {
321
322
  throw new Error("Error fetching cloud projects from the server.");
322
323
  }
@@ -328,6 +329,34 @@ async function cloudApiFactory({ logger }, token) {
328
329
  throw error;
329
330
  }
330
331
  },
332
+ async listEnvironments({ name: name2 }) {
333
+ try {
334
+ const response = await axiosCloudAPI.get(`/projects/${name2}/environments`);
335
+ if (response.status !== 200) {
336
+ throw new Error("Error fetching cloud environments from the server.");
337
+ }
338
+ return response;
339
+ } catch (error) {
340
+ logger.debug(
341
+ "🥲 Oops! Couldn't retrieve your project's environments from the server. Please try again."
342
+ );
343
+ throw error;
344
+ }
345
+ },
346
+ async getProject({ name: name2 }) {
347
+ try {
348
+ const response = await axiosCloudAPI.get(`/projects/${name2}`);
349
+ if (response.status !== 200) {
350
+ throw new Error("Error fetching project's details.");
351
+ }
352
+ return response;
353
+ } catch (error) {
354
+ logger.debug(
355
+ "🥲 Oops! There was a problem retrieving your project's details. Please try again."
356
+ );
357
+ throw error;
358
+ }
359
+ },
331
360
  track(event, payload = {}) {
332
361
  return axiosCloudAPI.post("/track", {
333
362
  event,
@@ -601,21 +630,24 @@ yup.object({
601
630
  name: yup.string().required(),
602
631
  exports: yup.lazy(
603
632
  (value) => yup.object(
604
- typeof value === "object" ? Object.entries(value).reduce((acc, [key, value2]) => {
605
- if (typeof value2 === "object") {
606
- acc[key] = yup.object({
607
- types: yup.string().optional(),
608
- source: yup.string().required(),
609
- module: yup.string().optional(),
610
- import: yup.string().required(),
611
- require: yup.string().required(),
612
- default: yup.string().required()
613
- }).noUnknown(true);
614
- } else {
615
- acc[key] = yup.string().matches(/^\.\/.*\.json$/).required();
616
- }
617
- return acc;
618
- }, {}) : void 0
633
+ typeof value === "object" ? Object.entries(value).reduce(
634
+ (acc, [key, value2]) => {
635
+ if (typeof value2 === "object") {
636
+ acc[key] = yup.object({
637
+ types: yup.string().optional(),
638
+ source: yup.string().required(),
639
+ module: yup.string().optional(),
640
+ import: yup.string().required(),
641
+ require: yup.string().required(),
642
+ default: yup.string().required()
643
+ }).noUnknown(true);
644
+ } else {
645
+ acc[key] = yup.string().matches(/^\.\/.*\.json$/).required();
646
+ }
647
+ return acc;
648
+ },
649
+ {}
650
+ ) : void 0
619
651
  ).optional()
620
652
  )
621
653
  });
@@ -883,7 +915,7 @@ async function createProject$1(ctx, cloudApi, projectInput) {
883
915
  throw e;
884
916
  }
885
917
  }
886
- const action$4 = async (ctx) => {
918
+ const action$5 = async (ctx) => {
887
919
  const { logger } = ctx;
888
920
  const { getValidToken, eraseToken } = await tokenServiceFactory(ctx);
889
921
  const token = await getValidToken(ctx, promptLogin);
@@ -1012,6 +1044,32 @@ const buildLogsServiceFactory = ({ logger }) => {
1012
1044
  });
1013
1045
  };
1014
1046
  };
1047
+ const QUIT_OPTION$1 = "Quit";
1048
+ async function promptForEnvironment(environments) {
1049
+ const choices = environments.map((env2) => ({ name: env2, value: env2 }));
1050
+ const { selectedEnvironment } = await inquirer.prompt([
1051
+ {
1052
+ type: "list",
1053
+ name: "selectedEnvironment",
1054
+ message: "Select the environment to deploy:",
1055
+ choices: [...choices, { name: chalk.grey(`(${QUIT_OPTION$1})`), value: null }]
1056
+ }
1057
+ ]);
1058
+ if (selectedEnvironment === null) {
1059
+ process.exit(1);
1060
+ }
1061
+ const { confirm } = await inquirer.prompt([
1062
+ {
1063
+ type: "confirm",
1064
+ name: "confirm",
1065
+ message: `Do you want to proceed with deployment to ${chalk.cyan(selectedEnvironment)}?`
1066
+ }
1067
+ ]);
1068
+ if (!confirm) {
1069
+ process.exit(1);
1070
+ }
1071
+ return selectedEnvironment;
1072
+ }
1015
1073
  async function upload(ctx, project, token, maxProjectFileSize) {
1016
1074
  const cloudApi = await cloudApiFactory(ctx, token);
1017
1075
  try {
@@ -1078,17 +1136,7 @@ async function upload(ctx, project, token, maxProjectFileSize) {
1078
1136
  return data.build_id;
1079
1137
  } catch (e) {
1080
1138
  progressBar.stop();
1081
- if (e instanceof AxiosError && e.response?.data) {
1082
- if (e.response.status === 404) {
1083
- ctx.logger.warn(
1084
- `The project does not exist. Please link your local project to a Strapi Cloud project using the link command.`
1085
- );
1086
- } else {
1087
- ctx.logger.error(e.response.data);
1088
- }
1089
- } else {
1090
- ctx.logger.error("An error occurred while deploying the project. Please try again later.");
1091
- }
1139
+ ctx.logger.error("An error occurred while deploying the project. Please try again later.");
1092
1140
  ctx.logger.debug(e);
1093
1141
  } finally {
1094
1142
  await fse__default.remove(tarFilePath);
@@ -1100,11 +1148,11 @@ async function upload(ctx, project, token, maxProjectFileSize) {
1100
1148
  process.exit(1);
1101
1149
  }
1102
1150
  }
1103
- async function getProject(ctx) {
1151
+ async function getProject$1(ctx) {
1104
1152
  const { project } = await retrieve();
1105
1153
  if (!project) {
1106
1154
  try {
1107
- return await action$4(ctx);
1155
+ return await action$5(ctx);
1108
1156
  } catch (e) {
1109
1157
  ctx.logger.error("An error occurred while deploying the project. Please try again later.");
1110
1158
  ctx.logger.debug(e);
@@ -1125,17 +1173,51 @@ async function getConfig({
1125
1173
  return null;
1126
1174
  }
1127
1175
  }
1128
- const action$3 = async (ctx) => {
1176
+ const action$4 = async (ctx, opts) => {
1129
1177
  const { getValidToken } = await tokenServiceFactory(ctx);
1130
1178
  const token = await getValidToken(ctx, promptLogin);
1131
1179
  if (!token) {
1132
1180
  return;
1133
1181
  }
1134
- const project = await getProject(ctx);
1182
+ const project = await getProject$1(ctx);
1135
1183
  if (!project) {
1136
1184
  return;
1137
1185
  }
1138
- const cloudApiService = await cloudApiFactory(ctx);
1186
+ const cloudApiService = await cloudApiFactory(ctx, token);
1187
+ let environments;
1188
+ try {
1189
+ const {
1190
+ data: { data: projectData, metadata }
1191
+ } = await cloudApiService.getProject({ name: project.name });
1192
+ const isProjectSuspended = projectData.suspendedAt;
1193
+ environments = projectData.environments;
1194
+ if (isProjectSuspended) {
1195
+ ctx.logger.log(
1196
+ "\n Oops! This project has been suspended. \n\n Please reactivate it from the dashboard to continue deploying: "
1197
+ );
1198
+ ctx.logger.log(chalk.underline(`${metadata.dashboardUrls.project}`));
1199
+ return;
1200
+ }
1201
+ } catch (e) {
1202
+ if (e instanceof AxiosError && e.response?.data) {
1203
+ if (e.response.status === 404) {
1204
+ ctx.logger.warn(
1205
+ `The project associated with this folder does not exist in Strapi Cloud.
1206
+ Please link your local project to an existing Strapi Cloud project using the ${chalk.cyan(
1207
+ "link"
1208
+ )} command before deploying.`
1209
+ );
1210
+ } else {
1211
+ ctx.logger.error(e.response.data);
1212
+ }
1213
+ } else {
1214
+ ctx.logger.error(
1215
+ "An error occurred while retrieving the project's information. Please try again later."
1216
+ );
1217
+ }
1218
+ ctx.logger.debug(e);
1219
+ return;
1220
+ }
1139
1221
  await trackEvent(ctx, cloudApiService, "willDeployWithCLI", {
1140
1222
  projectInternalName: project.name
1141
1223
  });
@@ -1144,7 +1226,7 @@ const action$3 = async (ctx) => {
1144
1226
  const cliConfig2 = await getConfig({ ctx, cloudApiService });
1145
1227
  if (!cliConfig2) {
1146
1228
  ctx.logger.error(
1147
- "An error occurred while retrieving data from Strapi Cloud. Please try check your network or again later."
1229
+ "An error occurred while retrieving data from Strapi Cloud. Please check your network or try again later."
1148
1230
  );
1149
1231
  return;
1150
1232
  }
@@ -1155,6 +1237,17 @@ const action$3 = async (ctx) => {
1155
1237
  );
1156
1238
  maxSize = 1e8;
1157
1239
  }
1240
+ let targetEnvironment;
1241
+ if (opts.environment) {
1242
+ if (!environments.includes(opts.environment)) {
1243
+ ctx.logger.error(`Environment ${opts.environment} does not exist.`);
1244
+ return;
1245
+ }
1246
+ targetEnvironment = opts.environment;
1247
+ } else {
1248
+ targetEnvironment = environments.length > 1 ? await promptForEnvironment(environments) : environments[0];
1249
+ }
1250
+ project.targetEnvironment = targetEnvironment;
1158
1251
  const buildId = await upload(ctx, project, token, maxSize);
1159
1252
  if (!buildId) {
1160
1253
  return;
@@ -1204,14 +1297,14 @@ const runAction = (name2, action2) => (...args) => {
1204
1297
  process.exit(1);
1205
1298
  });
1206
1299
  };
1207
- const command$5 = ({ command: command2, ctx }) => {
1208
- command2.command("cloud:deploy").alias("deploy").description("Deploy a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("deploy", action$3)(ctx));
1300
+ const command$6 = ({ ctx }) => {
1301
+ return createCommand("cloud:deploy").alias("deploy").description("Deploy a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").option("-e, --environment <name>", "Specify the environment to deploy").action((opts) => runAction("deploy", action$4)(ctx, opts));
1209
1302
  };
1210
1303
  const deployProject = {
1211
1304
  name: "deploy-project",
1212
1305
  description: "Deploy a Strapi Cloud project",
1213
- action: action$3,
1214
- command: command$5
1306
+ action: action$4,
1307
+ command: command$6
1215
1308
  };
1216
1309
  const QUIT_OPTION = "Quit";
1217
1310
  async function getExistingConfig(ctx) {
@@ -1295,7 +1388,7 @@ async function getUserSelection(ctx, projects) {
1295
1388
  return null;
1296
1389
  }
1297
1390
  }
1298
- const action$2 = async (ctx) => {
1391
+ const action$3 = async (ctx) => {
1299
1392
  const { getValidToken } = await tokenServiceFactory(ctx);
1300
1393
  const token = await getValidToken(ctx, promptLogin);
1301
1394
  const { logger } = ctx;
@@ -1350,17 +1443,17 @@ const action$2 = async (ctx) => {
1350
1443
  });
1351
1444
  }
1352
1445
  };
1353
- const command$4 = ({ command: command2, ctx }) => {
1354
- command2.command("cloud:link").alias("link").description("Link a local directory to a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("link", action$2)(ctx));
1446
+ const command$5 = ({ command: command2, ctx }) => {
1447
+ command2.command("cloud:link").alias("link").description("Link a local directory to a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("link", action$3)(ctx));
1355
1448
  };
1356
1449
  const link = {
1357
1450
  name: "link-project",
1358
1451
  description: "Link a local directory to a Strapi Cloud project",
1359
- action: action$2,
1360
- command: command$4
1452
+ action: action$3,
1453
+ command: command$5
1361
1454
  };
1362
- const command$3 = ({ command: command2, ctx }) => {
1363
- command2.command("cloud:login").alias("login").description("Strapi Cloud Login").addHelpText(
1455
+ const command$4 = ({ ctx }) => {
1456
+ return createCommand("cloud:login").alias("login").description("Strapi Cloud Login").addHelpText(
1364
1457
  "after",
1365
1458
  "\nAfter running this command, you will be prompted to enter your authentication information."
1366
1459
  ).option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("login", loginAction)(ctx));
@@ -1369,10 +1462,10 @@ const login = {
1369
1462
  name: "login",
1370
1463
  description: "Strapi Cloud Login",
1371
1464
  action: loginAction,
1372
- command: command$3
1465
+ command: command$4
1373
1466
  };
1374
1467
  const openModule = import("open");
1375
- const action$1 = async (ctx) => {
1468
+ const action$2 = async (ctx) => {
1376
1469
  const { logger } = ctx;
1377
1470
  const { retrieveToken, eraseToken } = await tokenServiceFactory(ctx);
1378
1471
  const token = await retrieveToken();
@@ -1404,25 +1497,25 @@ const action$1 = async (ctx) => {
1404
1497
  }
1405
1498
  await trackEvent(ctx, cloudApiService, "didLogout", { loginMethod: "cli" });
1406
1499
  };
1407
- const command$2 = ({ command: command2, ctx }) => {
1408
- command2.command("cloud:logout").alias("logout").description("Strapi Cloud Logout").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("logout", action$1)(ctx));
1500
+ const command$3 = ({ ctx }) => {
1501
+ return createCommand("cloud:logout").alias("logout").description("Strapi Cloud Logout").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("logout", action$2)(ctx));
1409
1502
  };
1410
1503
  const logout = {
1411
1504
  name: "logout",
1412
1505
  description: "Strapi Cloud Logout",
1413
- action: action$1,
1414
- command: command$2
1506
+ action: action$2,
1507
+ command: command$3
1415
1508
  };
1416
- const command$1 = ({ command: command2, ctx }) => {
1417
- command2.command("cloud:create-project").description("Create a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("cloud:create-project", action$4)(ctx));
1509
+ const command$2 = ({ ctx }) => {
1510
+ return createCommand("cloud:create-project").description("Create a Strapi Cloud project").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("cloud:create-project", action$5)(ctx));
1418
1511
  };
1419
1512
  const createProject = {
1420
1513
  name: "create-project",
1421
1514
  description: "Create a new project",
1422
- action: action$4,
1423
- command: command$1
1515
+ action: action$5,
1516
+ command: command$2
1424
1517
  };
1425
- const action = async (ctx) => {
1518
+ const action$1 = async (ctx) => {
1426
1519
  const { getValidToken } = await tokenServiceFactory(ctx);
1427
1520
  const token = await getValidToken(ctx, promptLogin);
1428
1521
  const { logger } = ctx;
@@ -1442,12 +1535,94 @@ const action = async (ctx) => {
1442
1535
  spinner.fail("An error occurred while fetching your projects from Strapi Cloud.");
1443
1536
  }
1444
1537
  };
1445
- const command = ({ command: command2, ctx }) => {
1446
- command2.command("cloud:projects").alias("projects").description("List Strapi Cloud projects").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("projects", action)(ctx));
1538
+ const command$1 = ({ command: command2, ctx }) => {
1539
+ command2.command("cloud:projects").alias("projects").description("List Strapi Cloud projects").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("projects", action$1)(ctx));
1447
1540
  };
1448
1541
  const listProjects = {
1449
1542
  name: "list-projects",
1450
1543
  description: "List Strapi Cloud projects",
1544
+ action: action$1,
1545
+ command: command$1
1546
+ };
1547
+ async function getProject(ctx) {
1548
+ const { project } = await retrieve();
1549
+ if (!project) {
1550
+ ctx.logger.warn(
1551
+ `
1552
+ We couldn't find a valid local project config.
1553
+ Please link your local project to an existing Strapi Cloud project using the ${chalk.cyan(
1554
+ "link"
1555
+ )} command`
1556
+ );
1557
+ process.exit(1);
1558
+ }
1559
+ return project;
1560
+ }
1561
+ const action = async (ctx) => {
1562
+ const { getValidToken } = await tokenServiceFactory(ctx);
1563
+ const token = await getValidToken(ctx, promptLogin);
1564
+ const { logger } = ctx;
1565
+ if (!token) {
1566
+ return;
1567
+ }
1568
+ const project = await getProject(ctx);
1569
+ if (!project) {
1570
+ ctx.logger.debug(`No valid local project configuration was found.`);
1571
+ return;
1572
+ }
1573
+ const cloudApiService = await cloudApiFactory(ctx, token);
1574
+ const spinner = logger.spinner("Fetching environments...").start();
1575
+ await trackEvent(ctx, cloudApiService, "willListEnvironment", {
1576
+ projectInternalName: project.name
1577
+ });
1578
+ try {
1579
+ const {
1580
+ data: { data: environmentsList }
1581
+ } = await cloudApiService.listEnvironments({ name: project.name });
1582
+ spinner.succeed();
1583
+ logger.log(environmentsList);
1584
+ await trackEvent(ctx, cloudApiService, "didListEnvironment", {
1585
+ projectInternalName: project.name
1586
+ });
1587
+ } catch (e) {
1588
+ if (e.response && e.response.status === 404) {
1589
+ spinner.succeed();
1590
+ logger.warn(
1591
+ `
1592
+ The project associated with this folder does not exist in Strapi Cloud.
1593
+ Please link your local project to an existing Strapi Cloud project using the ${chalk.cyan(
1594
+ "link"
1595
+ )} command`
1596
+ );
1597
+ } else {
1598
+ spinner.fail("An error occurred while fetching environments data from Strapi Cloud.");
1599
+ logger.debug("Failed to list environments", e);
1600
+ }
1601
+ await trackEvent(ctx, cloudApiService, "didNotListEnvironment", {
1602
+ projectInternalName: project.name
1603
+ });
1604
+ }
1605
+ };
1606
+ function defineCloudNamespace(command2, ctx) {
1607
+ const cloud = command2.command("cloud").description("Manage Strapi Cloud projects");
1608
+ cloud.command("environments").description("Alias for cloud environment list").action(() => runAction("list", action)(ctx));
1609
+ return cloud;
1610
+ }
1611
+ let environmentCmd = null;
1612
+ const initializeEnvironmentCommand = (command2, ctx) => {
1613
+ if (!environmentCmd) {
1614
+ const cloud = defineCloudNamespace(command2, ctx);
1615
+ environmentCmd = cloud.command("environment").description("Manage environments");
1616
+ }
1617
+ return environmentCmd;
1618
+ };
1619
+ const command = ({ command: command2, ctx }) => {
1620
+ const environmentCmd2 = initializeEnvironmentCommand(command2, ctx);
1621
+ environmentCmd2.command("list").description("List Strapi Cloud project environments").option("-d, --debug", "Enable debugging mode with verbose logs").option("-s, --silent", "Don't log anything").action(() => runAction("list", action)(ctx));
1622
+ };
1623
+ const listEnvironments = {
1624
+ name: "list-environments",
1625
+ description: "List Strapi Cloud environments",
1451
1626
  action,
1452
1627
  command
1453
1628
  };
@@ -1457,9 +1632,10 @@ const cli = {
1457
1632
  login,
1458
1633
  logout,
1459
1634
  createProject,
1460
- listProjects
1635
+ listProjects,
1636
+ listEnvironments
1461
1637
  };
1462
- const cloudCommands = [deployProject, link, login, logout, listProjects];
1638
+ const cloudCommands = [deployProject, link, login, logout, listProjects, listEnvironments];
1463
1639
  async function initCloudCLIConfig() {
1464
1640
  const localConfig = await getLocalConfig();
1465
1641
  if (!localConfig.deviceId) {
@@ -1475,7 +1651,10 @@ async function buildStrapiCloudCommands({
1475
1651
  await initCloudCLIConfig();
1476
1652
  for (const cloudCommand of cloudCommands) {
1477
1653
  try {
1478
- await cloudCommand.command({ command: command2, ctx, argv });
1654
+ const subCommand = await cloudCommand.command({ command: command2, ctx, argv });
1655
+ if (subCommand) {
1656
+ command2.addCommand(subCommand);
1657
+ }
1479
1658
  } catch (e) {
1480
1659
  console.error(`Failed to load command ${cloudCommand.name}`, e);
1481
1660
  }