@eclipse-scout/migrate 24.2.0-beta.2 → 24.2.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.
- package/bin/scout-migrate.js +1 -1
- package/package.json +2 -2
package/bin/scout-migrate.js
CHANGED
|
@@ -102,7 +102,7 @@ if (args.printEventMaps) {
|
|
|
102
102
|
if (migrateConfig.plugins.length === 0) {
|
|
103
103
|
console.warn('No tasks executed, please consult README.md');
|
|
104
104
|
} else {
|
|
105
|
-
migrate({rootDir, tsConfigDir, config: migrateConfig, sources}).then(exitCode => process.exit(exitCode));
|
|
105
|
+
migrate({rootDir, tsConfigDir, config: migrateConfig, sources}).then(({exitCode}) => process.exit(exitCode));
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
function configTypeScript() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-scout/migrate",
|
|
3
|
-
"version": "24.2.
|
|
3
|
+
"version": "24.2.1",
|
|
4
4
|
"description": "TypeScript migration module",
|
|
5
5
|
"author": "BSI Business Systems Integration AG",
|
|
6
6
|
"homepage": "https://www.eclipse.org/scout",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"jest": "29.7.0",
|
|
43
43
|
"@babel/preset-env": "7.23.5",
|
|
44
44
|
"@babel/core": "7.23.5",
|
|
45
|
-
"@eclipse-scout/tsconfig": "24.2.
|
|
45
|
+
"@eclipse-scout/tsconfig": "24.2.1"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"scout-migrate": "node bin/scout-migrate",
|