@eclipse-scout/migrate 25.1.16-alpha.1 → 25.2.0-beta.2
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/README.md +5 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
|
-
<a href="https://ci.eclipse.org/scout/job/scout-integration-25.
|
|
7
|
-
<a href="https://ci.eclipse.org/scout/job/scout-integration-25.
|
|
6
|
+
<a href="https://ci.eclipse.org/scout/job/scout-integration-25.2-RT-nightly_pipeline/" target="_blank" rel="noopener noreferrer"><img alt="Jenkins" src="https://img.shields.io/jenkins/build?jobUrl=https%3A%2F%2Fci.eclipse.org%2Fscout%2Fjob%2Fscout-integration-25.2-RT-nightly_pipeline%2F"></a>
|
|
7
|
+
<a href="https://ci.eclipse.org/scout/job/scout-integration-25.2-RT-nightly_pipeline/" target="_blank" rel="noopener noreferrer"><img alt="Jenkins tests" src="https://img.shields.io/jenkins/tests?jobUrl=https%3A%2F%2Fci.eclipse.org%2Fscout%2Fjob%2Fscout-integration-25.2-RT-nightly_pipeline%2F"></a>
|
|
8
8
|
<a href="https://www.npmjs.com/package/@eclipse-scout/migrate" target="_blank" rel="noopener noreferrer"><img alt="npm" src="https://img.shields.io/npm/dm/@eclipse-scout/migrate"></a>
|
|
9
9
|
<a href="https://www.eclipse.org/legal/epl-2.0/" target="_blank" rel="noopener noreferrer"><img alt="NPM" src="https://img.shields.io/npm/l/@eclipse-scout/migrate"></a>
|
|
10
10
|
<a href="https://www.npmjs.com/package/@eclipse-scout/migrate" target="_blank" rel="noopener noreferrer"><img alt="npm (scoped)" src="https://img.shields.io/npm/v/@eclipse-scout/migrate"></a>
|
|
@@ -29,7 +29,7 @@ To set up the tool, do the following:
|
|
|
29
29
|
```json
|
|
30
30
|
{
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@eclipse-scout/migrate": "~25.
|
|
32
|
+
"@eclipse-scout/migrate": "~25.2.0"
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
```
|
|
@@ -45,7 +45,7 @@ Some migrations require a `tsconfig.json`. You can add it as follows (do it only
|
|
|
45
45
|
```json
|
|
46
46
|
{
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@eclipse-scout/tsconfig": "~25.
|
|
48
|
+
"@eclipse-scout/tsconfig": "~25.2.0"
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
```
|
|
@@ -138,7 +138,7 @@ In order to run the TypeScript migration, do the following:
|
|
|
138
138
|
In your widget, implement the model interface and declare a model variable.
|
|
139
139
|
- To create the event maps, you can run the `event-maps` script from below and copy the result into a separate event maps file.
|
|
140
140
|
- If you use third party libraries, you may want to check if they provide types and add them to the `devDependencies` of your `package.json` (e.g. @types/jquery).
|
|
141
|
-
See also [Project Setup for TypeScript](https://eclipsescout.github.io/scout-docs/25.
|
|
141
|
+
See also [Project Setup for TypeScript](https://eclipsescout.github.io/scout-docs/25.2/technical-guide/user-interface/typescript.html#project-setup-for-typescript)
|
|
142
142
|
- Remove the added `scripts`, `overrides` and dependency to `@eclipse-scout/migrate`.
|
|
143
143
|
|
|
144
144
|
```json
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-scout/migrate",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.2.0-beta.2",
|
|
4
4
|
"description": "TypeScript migration module",
|
|
5
5
|
"author": "BSI Business Systems Integration AG",
|
|
6
6
|
"homepage": "https://eclipse.dev/scout/",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"jest": "29.7.0",
|
|
43
43
|
"@babel/preset-env": "7.26.0",
|
|
44
44
|
"@babel/core": "7.26.0",
|
|
45
|
-
"@eclipse-scout/tsconfig": "25.
|
|
45
|
+
"@eclipse-scout/tsconfig": "25.2.0-beta.2"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"scout-migrate": "node bin/scout-migrate",
|