@forge/cli-shared 9.4.1-next.8 → 9.5.0-next.10

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/out/ui/text.js CHANGED
@@ -35,6 +35,7 @@ function itemList(items, indent) {
35
35
  return items.map((item) => `${indent ?? ' '}- ${item}`).join(`\n${indent ?? ''}`);
36
36
  }
37
37
  const fatalError = (message) => chalk_1.default.bold(chalk_1.default.red(message));
38
+ const approveRuleDescription = 'list of validation rules to approve';
38
39
  const keytarAccessErrorBase = (message) => `Keytar error detected: ${message}`;
39
40
  const capitalise = (word) => word.charAt(0).toUpperCase() + word.slice(1);
40
41
  exports.capitalise = capitalise;
@@ -950,7 +951,7 @@ What do you like or don't like about Forge? Share your feedback below or press C
950
951
  description: 'Skip rolling release rollout after deployment'
951
952
  },
952
953
  approveRule: {
953
- description: 'list of validation rules to approve'
954
+ description: approveRuleDescription
954
955
  },
955
956
  connectKeyChange: {
956
957
  continueChange: `Do you wish to continue with changing the Connect key?`,
@@ -1375,6 +1376,9 @@ ${buildTerminalLink(link)}\n`,
1375
1376
  lint: {
1376
1377
  blurb: "The linter checks the app code for known errors. Warnings are issues you should fix, but they won't stop the app code from building.\nPress Ctrl+C to cancel.\n",
1377
1378
  cmd: 'check the source files for common errors',
1379
+ approveRule: {
1380
+ description: approveRuleDescription
1381
+ },
1378
1382
  running: `Running ${forge('lint')}...`,
1379
1383
  noProblems: 'No issues found.',
1380
1384
  approvalRequired: chalk_1.default.cyan(` Approval required, fixable with ${forge('deploy', '--approve <ruleName..>')}.`),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/cli-shared",
3
- "version": "9.4.1-next.8",
3
+ "version": "9.5.0-next.10",
4
4
  "description": "Common functionality for Forge CLI",
5
5
  "author": "Atlassian",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -12,7 +12,7 @@
12
12
  "generate-graphql-types": "graphql-codegen --config src/graphql/codegen.yml"
13
13
  },
14
14
  "dependencies": {
15
- "@forge/manifest": "13.4.0-next.5",
15
+ "@forge/manifest": "13.4.0-next.6",
16
16
  "@forge/util": "3.0.0",
17
17
  "@forge/i18n": "1.0.0",
18
18
  "@sentry/node": "7.106.0",