@eclipse-scout/migrate 23.2.15 → 24.1.0-beta.1

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +12 -12
package/README.md CHANGED
@@ -29,7 +29,7 @@ To set up the tool, do the following:
29
29
  ```json
30
30
  {
31
31
  "devDependencies": {
32
- "@eclipse-scout/migrate": "~23.2.0"
32
+ "@eclipse-scout/migrate": "~24.1.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": "~23.2.0"
48
+ "@eclipse-scout/tsconfig": "~24.1.0"
49
49
  }
50
50
  }
51
51
  ```
@@ -119,7 +119,7 @@ In order to run the TypeScript migration, do the following:
119
119
  - Ensure you have a clean Git working tree (no uncommitted files).
120
120
  - Create a `tsconfig.json` as described [here](#tsconfig)
121
121
  - Add scripts in your `package.json` as described below.
122
- - Add an `override` in your `package.json` to fix the TypeScript version to 4.8.3 (the migrate tool will skip some migrations and print a warning about the wrong version otherwise). This is only needed for the migration and has to be
122
+ - Add an `override` in your `package.json` to fix the TypeScript version to 5.3.2 (the migrate tool will skip some migrations and print a warning about the wrong version otherwise). This is only needed for the migration and has to be
123
123
  removed afterwards.
124
124
  - Adjust the module map as described in the chapter [Module Map](#module-map)
125
125
  - Add custom type maps if you have a large code base and would like to automate a little more, see [Type Map](#type-map)
@@ -150,7 +150,7 @@ In order to run the TypeScript migration, do the following:
150
150
  },
151
151
  "pnpm": {
152
152
  "overrides": {
153
- "typescript": "4.8.3"
153
+ "typescript": "5.3.2"
154
154
  }
155
155
  }
156
156
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-scout/migrate",
3
- "version": "23.2.15",
3
+ "version": "24.1.0-beta.1",
4
4
  "description": "TypeScript migration module",
5
5
  "author": "BSI Business Systems Integration AG",
6
6
  "homepage": "https://www.eclipse.org/scout",
@@ -10,9 +10,9 @@
10
10
  },
11
11
  "license": "EPL-2.0",
12
12
  "engines": {
13
- "node": ">=18.12.1",
14
- "npm": ">=9.1.1",
15
- "pnpm": ">=7.16.0"
13
+ "node": ">=20.10.0",
14
+ "npm": ">=10.2.3",
15
+ "pnpm": ">=8.11.0"
16
16
  },
17
17
  "keywords": [
18
18
  "scout",
@@ -33,16 +33,16 @@
33
33
  "ts-migrate-plugins": "0.1.35",
34
34
  "ts-migrate-server": "0.1.33",
35
35
  "yargs-parser": "21.1.1",
36
- "jscodeshift": "0.14.0",
37
- "typescript": "4.9.5"
36
+ "jscodeshift": "0.15.1",
37
+ "typescript": "5.3.3"
38
38
  },
39
39
  "devDependencies": {
40
- "@types/jscodeshift": "^0.11.6",
41
- "@types/yargs": "^17.0.24",
42
- "jest": "29.5.0",
43
- "@babel/preset-env": "7.21.4",
44
- "@babel/core": "7.21.4",
45
- "@eclipse-scout/tsconfig": "23.2.15"
40
+ "@types/jscodeshift": "^0.11.11",
41
+ "@types/yargs": "^17.0.32",
42
+ "jest": "29.7.0",
43
+ "@babel/preset-env": "7.23.5",
44
+ "@babel/core": "7.23.5",
45
+ "@eclipse-scout/tsconfig": "24.1.0-beta.1"
46
46
  },
47
47
  "scripts": {
48
48
  "scout-migrate": "node bin/scout-migrate",