Skip to content

Commit c29b22d

Browse files
authored
2.12.23: update abaplint (#1679)
1 parent 88329da commit c29b22d

File tree

10 files changed

+304
-323
lines changed

10 files changed

+304
-323
lines changed

.github/regression/regression.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const repos = [
1313
{name: "larshp/abap-wasm", command: "npm run unit"},
1414
{name: "larshp/abapNTLM", command: "npm test"},
1515
{name: "larshp/abapPGP", command: "npm test"},
16+
{name: "oisee/zork-abap", command: "npm test"},
1617
{name: "open-abap/open-abap-core", command: "npm test"},
1718
{name: "open-abap/open-abap-gui", command: "npm test"},
1819
{name: "open-abap/open-abap-jobs", command: "npm run docker:start && npm test && npm run docker:stop"},

package-lock.json

Lines changed: 139 additions & 139 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,20 @@
4141
},
4242
"homepage": "https://github.com/abaplint/transpiler_poc#readme",
4343
"devDependencies": {
44-
"@abaplint/core": "^2.114.10",
44+
"@abaplint/core": "^2.115.10",
4545
"@eslint/compat": "^2.0.0",
4646
"@eslint/eslintrc": "^3.3.3",
47-
"@eslint/js": "^9.39.1",
47+
"@eslint/js": "^9.39.2",
4848
"@types/chai": "^4.3.20",
4949
"@types/mocha": "^10.0.10",
50-
"@types/node": "^24.10.3",
50+
"@types/node": "^24.10.4",
5151
"@types/sql.js": "^1.4.9",
52-
"@typescript-eslint/eslint-plugin": "^8.49.0",
53-
"@typescript-eslint/parser": "^8.49.0",
52+
"@typescript-eslint/eslint-plugin": "^8.50.1",
53+
"@typescript-eslint/parser": "^8.50.1",
5454
"chai": "^4.5.0",
5555
"cross-fetch": "^4.1.0",
5656
"dotenv": "^17.2.3",
57-
"eslint": "^9.39.1",
57+
"eslint": "^9.39.2",
5858
"eslint-plugin-import": "^2.32.0",
5959
"fast-xml-parser": "^5.3.3",
6060
"globals": "^16.5.0",

packages/cli/package-lock.json

Lines changed: 138 additions & 159 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@abaplint/transpiler-cli",
3-
"version": "2.12.22",
3+
"version": "2.12.23",
44
"description": "Transpiler - Command Line Interface",
55
"funding": "https://github.com/sponsors/larshp",
66
"bin": {
@@ -27,17 +27,17 @@
2727
"author": "abaplint",
2828
"license": "MIT",
2929
"devDependencies": {
30-
"@abaplint/core": "^2.114.10",
31-
"@abaplint/transpiler": "^2.12.22",
30+
"@abaplint/core": "^2.115.10",
31+
"@abaplint/transpiler": "^2.12.23",
3232
"@types/glob": "^8.1.0",
33-
"@types/node": "^24.10.3",
33+
"@types/node": "^24.10.4",
3434
"@types/progress": "^2.0.7",
3535
"glob": "=7.2.0",
3636
"progress": "^2.0.3",
3737
"ts-json-schema-generator": "^2.4.0",
3838
"typescript": "^5.9.3",
3939
"p-limit": "^3.1.0",
4040
"webpack-cli": "^6.0.1",
41-
"webpack": "^5.103.0"
41+
"webpack": "^5.104.1"
4242
}
4343
}

packages/cli/src/file_operations.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export class FileOperations {
3131
const limit = this.setupPLimit();
3232
const promises = filesToRead.map((filename) => {
3333
return limit(async () => {
34+
// const isBinary = filename.includes(".w3mi.data.");
3435
return {
3536
filename: path.basename(filename),
3637
relative: path.relative(outputFolder, path.dirname(filename)),

packages/runtime/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@abaplint/runtime",
3-
"version": "2.12.22",
3+
"version": "2.12.23",
44
"description": "Transpiler - Runtime",
55
"main": "build/src/index.js",
66
"typings": "build/src/index.d.ts",

packages/transpiler/package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/transpiler/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@abaplint/transpiler",
3-
"version": "2.12.22",
3+
"version": "2.12.23",
44
"description": "Transpiler",
55
"main": "build/src/index.js",
66
"typings": "build/src/index.d.ts",
@@ -29,7 +29,7 @@
2929
"author": "abaplint",
3030
"license": "MIT",
3131
"dependencies": {
32-
"@abaplint/core": "^2.114.10",
32+
"@abaplint/core": "^2.115.10",
3333
"source-map": "^0.7.6"
3434
},
3535
"devDependencies": {

0 commit comments

Comments
 (0)