@abaplint/cli 2.113.186 → 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 +9 -3
  2. package/package.json +4 -4
package/build/cli.js CHANGED
@@ -53428,12 +53428,18 @@ 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
53432
- || field.FIELDNAME === ".INCLU--AP") {
53431
+ // Note: "--AP" are .APPENDS
53432
+ if (field.FIELDNAME.startsWith(".INCLU-") === false || field.FIELDNAME === ".INCLU--AP") {
53433
53433
  for (const c of found.getComponents()) {
53434
53434
  components.push({ name: c.name, type: c.type });
53435
53435
  }
53436
53436
  }
53437
+ else if (field.FIELDNAME.startsWith(".INCLU-")) {
53438
+ const postfix = field.FIELDNAME.substring(".INCLU-".length);
53439
+ for (const c of found.getComponents()) {
53440
+ components.push({ name: c.name + postfix, type: c.type });
53441
+ }
53442
+ }
53437
53443
  }
53438
53444
  else if ((((_a = field.PRECFIELD) === null || _a === void 0 ? void 0 : _a.startsWith("CI_")) || ((_b = field.PRECFIELD) === null || _b === void 0 ? void 0 : _b.startsWith("SI_")))
53439
53445
  && found instanceof Types.UnknownType) {
@@ -54949,7 +54955,7 @@ class Registry {
54949
54955
  }
54950
54956
  static abaplintVersion() {
54951
54957
  // magic, see build script "version.sh"
54952
- return "2.113.186";
54958
+ return "2.113.188";
54953
54959
  }
54954
54960
  getDDICReferences() {
54955
54961
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.113.186",
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.186",
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",
@@ -47,10 +47,10 @@
47
47
  "chai": "^4.5.0",
48
48
  "p-limit": "^3.1.0",
49
49
  "chalk": "^5.6.0",
50
- "eslint": "^9.33.0",
50
+ "eslint": "^9.34.0",
51
51
  "glob": "^11.0.3",
52
52
  "json5": "^2.2.3",
53
- "memfs": "^4.36.3",
53
+ "memfs": "^4.38.1",
54
54
  "minimist": "^1.2.8",
55
55
  "mocha": "^11.7.1",
56
56
  "progress": "^2.0.3",