@abaplint/cli 2.113.186 → 2.113.187
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/cli.js +8 -3
- package/package.json +4 -4
package/build/cli.js
CHANGED
|
@@ -53428,12 +53428,17 @@ 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
|
+
if (field.FIELDNAME.startsWith(".INCLU-") === false) {
|
|
53433
53432
|
for (const c of found.getComponents()) {
|
|
53434
53433
|
components.push({ name: c.name, type: c.type });
|
|
53435
53434
|
}
|
|
53436
53435
|
}
|
|
53436
|
+
else if (field.FIELDNAME.startsWith(".INCLU-")) {
|
|
53437
|
+
const postfix = field.FIELDNAME.substring(".INCLU-".length);
|
|
53438
|
+
for (const c of found.getComponents()) {
|
|
53439
|
+
components.push({ name: c.name + postfix, type: c.type });
|
|
53440
|
+
}
|
|
53441
|
+
}
|
|
53437
53442
|
}
|
|
53438
53443
|
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
53444
|
&& found instanceof Types.UnknownType) {
|
|
@@ -54949,7 +54954,7 @@ class Registry {
|
|
|
54949
54954
|
}
|
|
54950
54955
|
static abaplintVersion() {
|
|
54951
54956
|
// magic, see build script "version.sh"
|
|
54952
|
-
return "2.113.
|
|
54957
|
+
return "2.113.187";
|
|
54953
54958
|
}
|
|
54954
54959
|
getDDICReferences() {
|
|
54955
54960
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.187",
|
|
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.
|
|
41
|
+
"@abaplint/core": "^2.113.187",
|
|
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.
|
|
50
|
+
"eslint": "^9.34.0",
|
|
51
51
|
"glob": "^11.0.3",
|
|
52
52
|
"json5": "^2.2.3",
|
|
53
|
-
"memfs": "^4.
|
|
53
|
+
"memfs": "^4.38.1",
|
|
54
54
|
"minimist": "^1.2.8",
|
|
55
55
|
"mocha": "^11.7.1",
|
|
56
56
|
"progress": "^2.0.3",
|