@sap-ux/odata-service-writer 0.27.37 → 0.27.38

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.
@@ -290,7 +290,7 @@ async function addMultipleServiceSupportToManifest(webappPath, manifest, fs) {
290
290
  const dataSources = manifest?.['sap.app']?.dataSources;
291
291
  for (const dataSourceKey in dataSources) {
292
292
  const dataSource = dataSources[dataSourceKey];
293
- if (dataSource && dataSource.type === 'OData') {
293
+ if (dataSource?.type === 'OData') {
294
294
  convertSingleService(webappPath, dataSourceKey, dataSource, fs);
295
295
  const annotations = dataSource.settings?.annotations;
296
296
  if (annotations) {
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%3Aodata-service-writer"
11
11
  },
12
- "version": "0.27.37",
12
+ "version": "0.27.38",
13
13
  "license": "Apache-2.0",
14
14
  "main": "dist/index.js",
15
15
  "files": [
@@ -29,9 +29,9 @@
29
29
  "mem-fs-editor": "9.4.0",
30
30
  "prettify-xml": "1.2.0",
31
31
  "semver": "7.5.4",
32
- "@sap-ux/mockserver-config-writer": "0.9.32",
33
- "@sap-ux/project-access": "1.32.15",
34
- "@sap-ux/ui5-config": "0.29.10"
32
+ "@sap-ux/mockserver-config-writer": "0.9.33",
33
+ "@sap-ux/project-access": "1.32.16",
34
+ "@sap-ux/ui5-config": "0.29.11"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@sap-ux/vocabularies-types": "0.13.1",
@@ -42,7 +42,7 @@
42
42
  "@types/semver": "7.5.2",
43
43
  "fs-extra": "10.0.0",
44
44
  "lodash": "4.17.21",
45
- "@sap-ux/axios-extension": "1.24.5"
45
+ "@sap-ux/axios-extension": "1.24.6"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">=20.x"
@@ -52,8 +52,8 @@
52
52
  "watch": "tsc --watch",
53
53
  "clean": "rimraf --glob dist test/test-output coverage *.tsbuildinfo",
54
54
  "format": "prettier --write '**/*.{js,json,ts,yaml,yml}' --ignore-path ../../.prettierignore",
55
- "lint": "eslint . --ext .ts",
56
- "lint:fix": "eslint . --ext .ts --fix",
55
+ "lint": "eslint",
56
+ "lint:fix": "eslint --fix",
57
57
  "test": "jest --ci --forceExit --detectOpenHandles --colors",
58
58
  "test-u": "jest --ci --forceExit --detectOpenHandles --colors -u",
59
59
  "link": "pnpm link --global",