@abaplint/cli 2.112.20 → 2.112.21

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/build/cli.js +2 -2
  2. package/package.json +4 -4
package/build/cli.js CHANGED
@@ -52621,7 +52621,7 @@ class Registry {
52621
52621
  }
52622
52622
  static abaplintVersion() {
52623
52623
  // magic, see build script "version.sh"
52624
- return "2.112.20";
52624
+ return "2.112.21";
52625
52625
  }
52626
52626
  getDDICReferences() {
52627
52627
  return this.ddicReferences;
@@ -75699,7 +75699,7 @@ function xmlToArray(data) {
75699
75699
  if (data === undefined) {
75700
75700
  return [];
75701
75701
  }
75702
- else if (data.length) { // input data is an Array
75702
+ else if (Array.isArray(data)) {
75703
75703
  return data;
75704
75704
  }
75705
75705
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.112.20",
3
+ "version": "2.112.21",
4
4
  "description": "abaplint - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -38,12 +38,12 @@
38
38
  },
39
39
  "homepage": "https://abaplint.org",
40
40
  "devDependencies": {
41
- "@abaplint/core": "^2.112.20",
42
- "@types/chai": "^4.3.17",
41
+ "@abaplint/core": "^2.112.21",
42
+ "@types/chai": "^4.3.19",
43
43
  "@types/glob": "^8.1.0",
44
44
  "@types/minimist": "^1.2.5",
45
45
  "@types/mocha": "^10.0.7",
46
- "@types/node": "^22.5.0",
46
+ "@types/node": "^22.5.1",
47
47
  "@types/progress": "^2.0.7",
48
48
  "chai": "^4.5.0",
49
49
  "chalk": "^5.3.0",