@axway/axway-central-cli 4.10.0-rc.4 → 4.11.0
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axway/axway-central-cli",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.11.0",
|
|
4
4
|
"description": "Manage APIs, services and publish to the Amplify Marketplace",
|
|
5
5
|
"homepage": "https://platform.axway.com",
|
|
6
6
|
"author": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"name": "Axway",
|
|
9
9
|
"url": "https://axway.com"
|
|
10
10
|
},
|
|
11
|
-
"license": "SEE
|
|
11
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
12
12
|
"engines": {
|
|
13
13
|
"node": ">=12.13.0"
|
|
14
14
|
},
|
|
@@ -124,8 +124,5 @@
|
|
|
124
124
|
"singleQuote": true,
|
|
125
125
|
"tabWidth": 2,
|
|
126
126
|
"useTabs": true
|
|
127
|
-
},
|
|
128
|
-
"resolutions": {
|
|
129
|
-
"**/lodash": "4.17.21"
|
|
130
127
|
}
|
|
131
128
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Post-install script to overwrite environment.js files
|
|
5
|
-
* This is done to add pre-prod support as
|
|
5
|
+
* This is done to add pre-prod support as Axway CLI changes cannot be added as dependency,
|
|
6
6
|
* as the v4 Axway CLI is ES Module dependent.
|
|
7
7
|
*/
|
|
8
8
|
|
|
@@ -44,7 +44,7 @@ for (const file of filesToOverwrite) {
|
|
|
44
44
|
// Copy the file
|
|
45
45
|
fs.copyFileSync(file.source, file.target);
|
|
46
46
|
} catch (error) {
|
|
47
|
-
console.error(`
|
|
47
|
+
console.error(`Failed to execute post install action`, error.message);
|
|
48
48
|
hasError = true;
|
|
49
49
|
}
|
|
50
50
|
}
|