@abaplint/cli 2.113.187 → 2.113.188

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 +3 -2
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -53428,7 +53428,8 @@ class Table extends _abstract_object_1.AbstractObject {
53428
53428
  if (field.GROUPNAME !== undefined) {
53429
53429
  components.push({ name: field.GROUPNAME, type: found, asInclude: true });
53430
53430
  }
53431
- if (field.FIELDNAME.startsWith(".INCLU-") === false) {
53431
+ // Note: "--AP" are .APPENDS
53432
+ if (field.FIELDNAME.startsWith(".INCLU-") === false || field.FIELDNAME === ".INCLU--AP") {
53432
53433
  for (const c of found.getComponents()) {
53433
53434
  components.push({ name: c.name, type: c.type });
53434
53435
  }
@@ -54954,7 +54955,7 @@ class Registry {
54954
54955
  }
54955
54956
  static abaplintVersion() {
54956
54957
  // magic, see build script "version.sh"
54957
- return "2.113.187";
54958
+ return "2.113.188";
54958
54959
  }
54959
54960
  getDDICReferences() {
54960
54961
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.113.187",
3
+ "version": "2.113.188",
4
4
  "description": "abaplint - Command Line Interface",
5
5
  "funding": "https://github.com/sponsors/larshp",
6
6
  "bin": {
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "homepage": "https://abaplint.org",
40
40
  "devDependencies": {
41
- "@abaplint/core": "^2.113.187",
41
+ "@abaplint/core": "^2.113.188",
42
42
  "@types/chai": "^4.3.20",
43
43
  "@types/minimist": "^1.2.5",
44
44
  "@types/mocha": "^10.0.10",