@sap-ux/ui5-library-writer 0.3.19 → 0.3.20

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.
@@ -61,6 +61,9 @@ function enableTypescript(libInput, basePath, tmplPath, fs) {
61
61
  afterMiddleware: 'compression',
62
62
  configuration: {
63
63
  debug: true,
64
+ transformModulesToUI5: {
65
+ overridesToOverride: true
66
+ },
64
67
  excludePatterns: ['/Component-preload.js']
65
68
  }
66
69
  });
@@ -69,7 +72,10 @@ function enableTypescript(libInput, basePath, tmplPath, fs) {
69
72
  name: 'ui5-tooling-transpile-task',
70
73
  afterTask: 'replaceVersion',
71
74
  configuration: {
72
- debug: true
75
+ debug: true,
76
+ transformModulesToUI5: {
77
+ overridesToOverride: true
78
+ }
73
79
  }
74
80
  }
75
81
  ]);
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%3Aui5-library-writer"
11
11
  },
12
- "version": "0.3.19",
12
+ "version": "0.3.20",
13
13
  "license": "Apache-2.0",
14
14
  "main": "dist/index.js",
15
15
  "files": [
@@ -30,7 +30,7 @@
30
30
  "mem-fs-editor": "9.4.0",
31
31
  "semver": "7.5.4",
32
32
  "@sap-ux/project-access": "1.19.0",
33
- "@sap-ux/ui5-application-writer": "0.26.3",
33
+ "@sap-ux/ui5-application-writer": "0.26.4",
34
34
  "@sap-ux/ui5-config": "0.21.1"
35
35
  },
36
36
  "devDependencies": {
@@ -41,7 +41,7 @@
41
41
  "@types/mem-fs": "1.1.2",
42
42
  "fs-extra": "10.0.0",
43
43
  "@types/semver": "7.5.2",
44
- "@sap-ux/eslint-plugin-fiori-tools": "0.3.1"
44
+ "@sap-ux/eslint-plugin-fiori-tools": "0.3.2"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "tsc --build",
@@ -3,7 +3,7 @@
3
3
  "version": "1.0.0",
4
4
  "private": true,
5
5
  "devDependencies": {
6
- "@ui5/cli": "^3.0.0",
6
+ "@ui5/cli": "^3.9.1",
7
7
  "karma": "6.3.17",
8
8
  "karma-chrome-launcher": "^3.1.1",
9
9
  "karma-cli": "^2.0.0",
@@ -61,5 +61,5 @@ export default class Example extends Control {
61
61
 
62
62
  onclick = () => {
63
63
  this.firePress();
64
- }
64
+ };
65
65
  }
@@ -3,17 +3,12 @@
3
3
  "version": "1.0.0",
4
4
  "private": true,
5
5
  "devDependencies": {
6
- "@babel/cli": "^7.17.6",
7
- "@babel/core": "^7.17.8",
8
- "@babel/preset-env": "^7.16.11",
9
- "@babel/preset-typescript": "^7.16.7",
10
6
  "<%= tsTypes %>": "<%= tsTypesVersion %>",
11
- "@typescript-eslint/eslint-plugin": "^5.59.0",
12
- "@typescript-eslint/parser": "^5.59.0",
13
- "@ui5/cli": "^3.0.0",
7
+ "@typescript-eslint/eslint-plugin": "^7.1.1",
8
+ "@typescript-eslint/parser": "^7.1.1",
9
+ "@ui5/cli": "^3.9.1",
14
10
  "@ui5/ts-interface-generator": "^0.8.1",
15
- "babel-preset-transform-ui5": "^7.0.5",
16
- "eslint": "^7.32.0",
11
+ "eslint": "^8.57.0",
17
12
  "karma": "^6.3.17",
18
13
  "karma-chrome-launcher": "^3.1.1",
19
14
  "karma-cli": "^2.0.0",
@@ -21,8 +16,8 @@
21
16
  "npm-run-all": "^4.1.5",
22
17
  "typescript": "^5.1.6",
23
18
  "@sap/ux-ui5-tooling": "1",
24
- "ui5-tooling-transpile": "^3.2.0",
25
- "@sap-ux/eslint-plugin-fiori-tools": "^0.2.0"
19
+ "ui5-tooling-transpile": "^3.3.7",
20
+ "@sap-ux/eslint-plugin-fiori-tools": "^0.3.1"
26
21
  },
27
22
  "scripts": {
28
23
  "build": "run-p -l build-app build-interface",
@@ -1,22 +0,0 @@
1
- {
2
- "presets": [
3
- "@babel/preset-env",
4
- [
5
- "transform-ui5",
6
- {
7
- "overridesToOverride": true
8
- }
9
- ],
10
- "@babel/preset-typescript"
11
- ],
12
- "plugins": [
13
- "transform-remove-console",
14
- [
15
- "transform-async-to-promises",
16
- {
17
- "inlineHelpers": true
18
- }
19
- ]
20
- ],
21
- "sourceMaps": true
22
- }