@abaplint/cli 2.119.18 → 2.119.20
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 +4 -4
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -56312,7 +56312,7 @@ class Registry {
|
|
|
56312
56312
|
}
|
|
56313
56313
|
static abaplintVersion() {
|
|
56314
56314
|
// magic, see build script "version.sh"
|
|
56315
|
-
return "2.119.
|
|
56315
|
+
return "2.119.19";
|
|
56316
56316
|
}
|
|
56317
56317
|
getDDICReferences() {
|
|
56318
56318
|
return this.ddicReferences;
|
|
@@ -56428,13 +56428,13 @@ class Registry {
|
|
|
56428
56428
|
continue;
|
|
56429
56429
|
}
|
|
56430
56430
|
let found = this.findOrCreate(f.getObjectName(), f.getObjectType());
|
|
56431
|
+
if (this.conf.getGlobal().errorOnDuplicateFilenames === true) {
|
|
56432
|
+
this.checkDuplicateFilename(filename, found.getFiles());
|
|
56433
|
+
}
|
|
56431
56434
|
if (dependency === false && found && this.isDependency(found)) {
|
|
56432
56435
|
this.removeDependency(found);
|
|
56433
56436
|
found = this.findOrCreate(f.getObjectName(), f.getObjectType());
|
|
56434
56437
|
}
|
|
56435
|
-
if (this.conf.getGlobal().errorOnDuplicateFilenames === true) {
|
|
56436
|
-
this.checkDuplicateFilename(filename, found.getFiles());
|
|
56437
|
-
}
|
|
56438
56438
|
found.addFile(f);
|
|
56439
56439
|
}
|
|
56440
56440
|
return this;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.119.
|
|
3
|
+
"version": "2.119.20",
|
|
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.119.
|
|
41
|
+
"@abaplint/core": "^2.119.19",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|