@toolsplus/nx-forge 6.1.1 → 6.1.3
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/package.json
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolsplus/nx-forge",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.3",
|
|
4
4
|
"description": "Atlassian Forge plugin for Nx",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/toolsplus/nx-forge"
|
|
8
|
+
},
|
|
5
9
|
"main": "./src/index.js",
|
|
6
10
|
"typings": "./src/index.d.ts",
|
|
7
11
|
"generators": "./generators.json",
|
|
8
12
|
"executors": "./executors.json",
|
|
9
13
|
"dependencies": {
|
|
10
|
-
"@forge/manifest": "^
|
|
14
|
+
"@forge/manifest": "^11.3.1",
|
|
11
15
|
"@nx/devkit": "20.3.1",
|
|
12
16
|
"@nx/eslint": "20.3.1",
|
|
13
17
|
"@nx/jest": "20.3.1",
|
|
@@ -17,6 +17,10 @@ async function runExecutor(rawOptions, context) {
|
|
|
17
17
|
// https://developer.atlassian.com/platform/forge/cli-reference/register/
|
|
18
18
|
const args = [
|
|
19
19
|
'register',
|
|
20
|
+
...(options.developerSpaceId
|
|
21
|
+
? [`--developer-space-id ${options.developerSpaceId}`]
|
|
22
|
+
: []),
|
|
23
|
+
...(options.acceptTerms === true ? ['--accept-terms'] : []),
|
|
20
24
|
...(options.verbose === true ? ['--verbose'] : []),
|
|
21
25
|
options.appName,
|
|
22
26
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../../packages/nx-forge/src/executors/register/executor.ts"],"names":[],"mappings":";;AAMA,
|
|
1
|
+
{"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../../../packages/nx-forge/src/executors/register/executor.ts"],"names":[],"mappings":";;AAMA,8BAyCC;AA/CD,uCAAqD;AAErD,+DAA2D;AAC3D,iEAA4D;AAC5D,qEAAwE;AAEzD,KAAK,UAAU,WAAW,CACvC,UAAmC,EACnC,OAAwB;IAExB,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,GACxB,OAAO,CAAC,sBAAsB,CAAC,QAAQ,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;IAE/D,IAAI,CAAC,UAAU,EAAE,CAAC;QAChB,MAAM,IAAI,KAAK,CAAC,GAAG,OAAO,CAAC,WAAW,8BAA8B,CAAC,CAAC;IACxE,CAAC;IAED,IAAI,CAAC,IAAI,EAAE,CAAC;QACV,MAAM,IAAI,KAAK,CAAC,GAAG,OAAO,CAAC,WAAW,wBAAwB,CAAC,CAAC;IAClE,CAAC;IAED,MAAM,OAAO,GAAG,IAAA,oCAAgB,EAAC,UAAU,EAAE,OAAO,CAAC,IAAI,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;IAE7E,yEAAyE;IACzE,MAAM,IAAI,GAAG;QACX,UAAU;QACV,GAAG,CAAC,OAAO,CAAC,gBAAgB;YAC1B,CAAC,CAAC,CAAC,wBAAwB,OAAO,CAAC,gBAAgB,EAAE,CAAC;YACtD,CAAC,CAAC,EAAE,CAAC;QACP,GAAG,CAAC,OAAO,CAAC,WAAW,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC3D,GAAG,CAAC,OAAO,CAAC,OAAO,KAAK,IAAI,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAClD,OAAO,CAAC,OAAO;KAChB,CAAC;IAEF,eAAM,CAAC,GAAG,CAAC,kBAAkB,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;IAE/C,MAAM,IAAA,qCAAoB,EAAC,IAAI,EAAE;QAC/B,GAAG,EAAE,OAAO,CAAC,UAAU;KACxB,CAAC,CAAC;IAEH,MAAM,IAAA,qCAAgB,EAAC,OAAO,CAAC,CAAC;IAEhC,eAAM,CAAC,IAAI,CAAC,wBAAwB,CAAC,CAAC;IAEtC,OAAO;QACL,OAAO,EAAE,IAAI;KACd,CAAC;AACJ,CAAC"}
|
|
@@ -17,6 +17,16 @@
|
|
|
17
17
|
"$source": "projectName"
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
|
+
"developerSpaceId": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"description": "ID of the Forge developer space this app should be part of",
|
|
23
|
+
"alias": "s"
|
|
24
|
+
},
|
|
25
|
+
"acceptTerms": {
|
|
26
|
+
"type": "boolean",
|
|
27
|
+
"description": "Automatically accept terms and conditions in non-interactive mode",
|
|
28
|
+
"alias": "y"
|
|
29
|
+
},
|
|
20
30
|
"verbose": {
|
|
21
31
|
"type": "boolean",
|
|
22
32
|
"description": "Run registration in verbose mode.",
|