@sap-ux/adp-tooling 0.18.25 → 0.18.26

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.
@@ -49,7 +49,7 @@ function shouldSetMinUI5Version(systemVersion) {
49
49
  return false;
50
50
  }
51
51
  const versionParts = systemVersion.split('.');
52
- const minorVersion = versionParts.length > 1 ? Number.parseInt(versionParts[1], 10) : NaN;
52
+ const minorVersion = versionParts.length > 1 ? Number.parseInt(versionParts[1], 10) : Number.NaN;
53
53
  return !Number.isNaN(minorVersion) && minorVersion >= 90;
54
54
  }
55
55
  /**
@@ -5,7 +5,7 @@ import type { IWriterData } from '../../types';
5
5
  * Handles the creation of a writer instance based on the generator type.
6
6
  */
7
7
  export declare class WriterFactory {
8
- private static writers;
8
+ private static readonly writers;
9
9
  /**
10
10
  * Creates an instance of a writer based on the specified generator type.
11
11
  *
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "bugs": {
10
10
  "url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Aadp-tooling"
11
11
  },
12
- "version": "0.18.25",
12
+ "version": "0.18.26",
13
13
  "license": "Apache-2.0",
14
14
  "author": "@SAP/ux-tools-team",
15
15
  "main": "dist/index.js",
@@ -36,19 +36,19 @@
36
36
  "prompts": "2.4.2",
37
37
  "sanitize-filename": "1.6.3",
38
38
  "uuid": "10.0.0",
39
- "@sap-ux/axios-extension": "1.25.0",
39
+ "@sap-ux/axios-extension": "1.25.1",
40
40
  "@sap-ux/btp-utils": "1.1.6",
41
- "@sap-ux/i18n": "0.3.6",
42
- "@sap-ux/inquirer-common": "0.10.1",
43
- "@sap-ux/logger": "0.7.2",
44
- "@sap-ux/nodejs-utils": "0.2.10",
45
- "@sap-ux/odata-service-writer": "0.29.0",
46
- "@sap-ux/project-access": "1.32.16",
47
- "@sap-ux/project-input-validator": "0.6.38",
48
- "@sap-ux/store": "1.4.0",
49
- "@sap-ux/system-access": "0.6.34",
50
- "@sap-ux/ui5-config": "0.29.11",
51
- "@sap-ux/ui5-info": "0.13.4"
41
+ "@sap-ux/i18n": "0.3.7",
42
+ "@sap-ux/inquirer-common": "0.10.2",
43
+ "@sap-ux/logger": "0.7.3",
44
+ "@sap-ux/nodejs-utils": "0.2.11",
45
+ "@sap-ux/odata-service-writer": "0.29.1",
46
+ "@sap-ux/project-access": "1.32.17",
47
+ "@sap-ux/project-input-validator": "0.6.39",
48
+ "@sap-ux/store": "1.4.1",
49
+ "@sap-ux/system-access": "0.6.35",
50
+ "@sap-ux/ui5-config": "0.29.12",
51
+ "@sap-ux/ui5-info": "0.13.5"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/adm-zip": "0.5.5",
@@ -68,7 +68,7 @@
68
68
  "nock": "13.4.0",
69
69
  "rimraf": "6.0.1",
70
70
  "supertest": "7.1.4",
71
- "@sap-ux/store": "1.4.0"
71
+ "@sap-ux/store": "1.4.1"
72
72
  },
73
73
  "engines": {
74
74
  "node": ">=20.x"