@forge/cli-shared 9.4.1-next.8 → 9.5.0-next.9
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/CHANGELOG.md +6 -0
- package/out/graphql/graphql-types.d.ts +423 -9
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +72 -38
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -1
- package/package.json +1 -1
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:
|
|
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..>')}.`),
|