@forge/cli-shared 6.11.1-next.0 → 7.0.0-next.1
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 +13 -0
- package/out/app-logs/graphql-client.d.ts +1 -1
- package/out/app-logs/view-logs.d.ts +1 -1
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/graphql/graphql-types.d.ts +47 -2
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.js +8 -8
- package/package.json +2 -2
package/out/ui/text.js
CHANGED
|
@@ -710,13 +710,13 @@ What do you like or don't like about Forge? Share your feedback below or press C
|
|
|
710
710
|
},
|
|
711
711
|
build: {
|
|
712
712
|
cmd: {
|
|
713
|
-
desc: '
|
|
714
|
-
startNotice: `Building your app. \n${ctrlC}\n`,
|
|
715
|
-
start: 'Building your app...',
|
|
716
|
-
success: (buildTag) => `
|
|
713
|
+
desc: '(Preview) build and upload your app',
|
|
714
|
+
startNotice: `Building and uploading your app. \n${ctrlC}\n`,
|
|
715
|
+
start: 'Building and uploading your app...',
|
|
716
|
+
success: (buildTag) => `(Preview) Build successful with build tag: ${buildTag}`
|
|
717
717
|
},
|
|
718
718
|
buildTag: {
|
|
719
|
-
description: '
|
|
719
|
+
description: '(Preview) specify a custom build tag for build',
|
|
720
720
|
error: {
|
|
721
721
|
invalidBuildTag: (maxLength) => `Invalid build tag; tag must be ${maxLength} characters or less.`,
|
|
722
722
|
emptyBuildTag: 'Invalid build tag; tag cannot be empty.',
|
|
@@ -732,10 +732,10 @@ What do you like or don't like about Forge? Share your feedback below or press C
|
|
|
732
732
|
},
|
|
733
733
|
list: {
|
|
734
734
|
cmd: {
|
|
735
|
-
desc: '
|
|
735
|
+
desc: '(Preview) list builds for your app'
|
|
736
736
|
},
|
|
737
737
|
limit: (defaultLimit) => `Specify the number of builds to show (default is ${defaultLimit})`,
|
|
738
|
-
listingBuilds: '
|
|
738
|
+
listingBuilds: '(Preview) Showing builds for your app:',
|
|
739
739
|
noBuildsFound: 'No builds found.',
|
|
740
740
|
error: {
|
|
741
741
|
invalidLimit: 'Invalid limit; limit can only contain positive integers.'
|
|
@@ -785,7 +785,7 @@ What do you like or don't like about Forge? Share your feedback below or press C
|
|
|
785
785
|
invalidMajorVersionError: 'Invalid major version number'
|
|
786
786
|
},
|
|
787
787
|
buildTag: {
|
|
788
|
-
description: '
|
|
788
|
+
description: '(Preview) specify a build tag to deploy (from forge build)'
|
|
789
789
|
},
|
|
790
790
|
connectKeyChange: {
|
|
791
791
|
continueChange: `Do you wish to continue with changing the Connect key?`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/cli-shared",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0-next.1",
|
|
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": "9.
|
|
15
|
+
"@forge/manifest": "9.4.0-next.0",
|
|
16
16
|
"@forge/util": "1.4.9",
|
|
17
17
|
"@forge/i18n": "0.0.6",
|
|
18
18
|
"@sentry/node": "7.106.0",
|