@abaplint/transpiler-cli 2.10.37 → 2.10.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.
- package/build/bundle.js +2 -2
- package/package.json +5 -5
package/build/bundle.js
CHANGED
|
@@ -88107,10 +88107,10 @@ class TranspileTypes {
|
|
|
88107
88107
|
resolved = "DecFloat34";
|
|
88108
88108
|
}
|
|
88109
88109
|
else if (type instanceof abaplint.BasicTypes.UnknownType) {
|
|
88110
|
-
return `(() => { throw "Unknown type: ${type.getError()}" })()`;
|
|
88110
|
+
return `(() => { throw new Error("Unknown type: ${type.getError()}") })()`;
|
|
88111
88111
|
}
|
|
88112
88112
|
else if (type instanceof abaplint.BasicTypes.VoidType) {
|
|
88113
|
-
return `(() => { throw "Void type: ${type.getVoided()}" })()`;
|
|
88113
|
+
return `(() => { throw new Error("Void type: ${type.getVoided()}") })()`;
|
|
88114
88114
|
}
|
|
88115
88115
|
else {
|
|
88116
88116
|
resolved = "typeTodo" + type.constructor.name;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.38",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@abaplint/core": "^2.113.108",
|
|
31
|
-
"@abaplint/transpiler": "^2.10.
|
|
31
|
+
"@abaplint/transpiler": "^2.10.38",
|
|
32
32
|
"@types/glob": "^8.1.0",
|
|
33
33
|
"@types/node": "^22.14.0",
|
|
34
34
|
"@types/progress": "^2.0.7",
|
|
35
35
|
"glob": "=7.2.0",
|
|
36
36
|
"progress": "^2.0.3",
|
|
37
|
-
"ts-json-schema-generator": "^2.
|
|
38
|
-
"typescript": "^5.8.
|
|
37
|
+
"ts-json-schema-generator": "^2.4.0",
|
|
38
|
+
"typescript": "^5.8.3",
|
|
39
39
|
"webpack-cli": "^6.0.1",
|
|
40
|
-
"webpack": "^5.
|
|
40
|
+
"webpack": "^5.99.2"
|
|
41
41
|
}
|
|
42
42
|
}
|