@sap-ux/adp-tooling 1.0.20 → 1.0.22

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.
@@ -183,17 +183,6 @@ export class AdpPreview {
183
183
  else if (req.path === '/Component-preload.js') {
184
184
  res.status(404).send();
185
185
  }
186
- else if (req.path.startsWith('/i18n/') && req.path.endsWith('.properties')) {
187
- // i18n .properties files (default, locale variants, and per-page bundles such
188
- // as /i18n/ListReport/<entity>/i18n.properties) must always fall through to
189
- // the base app's resource server. The ADP webapp may also contain an
190
- // i18n.properties file with prefixed customer keys, but those are merged
191
- // into the model at runtime via appdescr_ui5_addNewModelEnhanceWith — not
192
- // by substituting the entire bundle here. Substituting hides the base app's
193
- // translations and breaks {@i18n>...} lookups (e.g. column header labels in
194
- // UI.LineItem).
195
- next();
196
- }
197
186
  else {
198
187
  // check if the requested file exists in the file system (replace .js with .* for typescript)
199
188
  const files = await this.project.byGlob(req.path.replace('.js', '.*'));
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "bugs": {
11
11
  "url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Aadp-tooling"
12
12
  },
13
- "version": "1.0.20",
13
+ "version": "1.0.22",
14
14
  "license": "Apache-2.0",
15
15
  "author": "@SAP/ux-tools-team",
16
16
  "main": "dist/index.js",
@@ -25,8 +25,8 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "@sap-devx/yeoman-ui-types": "1.25.0",
28
- "@sap/cf-tools": "3.3.0",
29
- "adm-zip": "0.5.16",
28
+ "@sap/cf-tools": "3.3.1",
29
+ "adm-zip": "0.5.17",
30
30
  "axios": "1.16.0",
31
31
  "ejs": "3.1.10",
32
32
  "i18next": "25.10.10",
@@ -37,19 +37,19 @@
37
37
  "prompts": "2.4.2",
38
38
  "sanitize-filename": "1.6.4",
39
39
  "uuid": "11.1.1",
40
- "@sap-ux/axios-extension": "2.0.3",
41
- "@sap-ux/btp-utils": "2.0.2",
40
+ "@sap-ux/axios-extension": "2.0.4",
41
+ "@sap-ux/btp-utils": "2.0.3",
42
42
  "@sap-ux/i18n": "1.0.1",
43
- "@sap-ux/inquirer-common": "1.0.13",
43
+ "@sap-ux/inquirer-common": "1.0.14",
44
44
  "@sap-ux/logger": "1.0.1",
45
- "@sap-ux/nodejs-utils": "1.0.3",
46
- "@sap-ux/odata-service-writer": "1.0.8",
45
+ "@sap-ux/nodejs-utils": "1.0.4",
46
+ "@sap-ux/odata-service-writer": "1.0.9",
47
47
  "@sap-ux/project-access": "2.1.3",
48
48
  "@sap-ux/project-input-validator": "1.0.7",
49
- "@sap-ux/store": "2.0.1",
50
- "@sap-ux/system-access": "1.0.3",
49
+ "@sap-ux/store": "2.0.2",
50
+ "@sap-ux/system-access": "1.0.4",
51
51
  "@sap-ux/ui5-config": "1.0.3",
52
- "@sap-ux/ui5-info": "1.0.1"
52
+ "@sap-ux/ui5-info": "1.0.2"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@jest/globals": "30.3.0",
@@ -63,14 +63,13 @@
63
63
  "@types/prompts": "2.4.9",
64
64
  "@types/supertest": "7.2.0",
65
65
  "@types/uuid": "11.0.0",
66
- "adm-zip": "0.5.16",
67
66
  "cross-env": "10.1.0",
68
67
  "dotenv": "17.4.2",
69
68
  "express": "4.22.1",
70
- "nock": "14.0.11",
69
+ "nock": "14.0.15",
71
70
  "rimraf": "6.1.3",
72
71
  "supertest": "7.2.2",
73
- "@sap-ux/store": "2.0.1"
72
+ "@sap-ux/store": "2.0.2"
74
73
  },
75
74
  "engines": {
76
75
  "node": ">=22.x"