@sap-ux/cf-deploy-config-writer 0.1.27 → 0.1.28
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/dist/mta-config/index.js +2 -2
- package/package.json +1 -1
package/dist/mta-config/index.js
CHANGED
|
@@ -152,9 +152,9 @@ function createCAPMTA(cwd, options) {
|
|
|
152
152
|
if (result?.error) {
|
|
153
153
|
throw new Error(`Something went wrong creating mta.yaml! ${result.error}`);
|
|
154
154
|
}
|
|
155
|
-
// Ensure the package-lock is created otherwise mta build will fail
|
|
156
155
|
const cmd = process.platform === 'win32' ? `npm.cmd` : 'npm';
|
|
157
|
-
|
|
156
|
+
// Install latest dev dependencies, if any, added by the CF writer
|
|
157
|
+
result = (0, child_process_1.spawnSync)(cmd, ['install', '--ignore-engines'], spawnOpts);
|
|
158
158
|
if (result?.error) {
|
|
159
159
|
throw new Error(`Something went wrong installing node modules! ${result.error}`);
|
|
160
160
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/cf-deploy-config-writer",
|
|
3
3
|
"description": "Add or amend Cloud Foundry and ABAP deployment configuration for SAP projects",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.28",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|