@abaplint/cli 2.107.3 → 2.107.4
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 +9 -1
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -51453,7 +51453,7 @@ class Registry {
|
|
|
51453
51453
|
}
|
|
51454
51454
|
static abaplintVersion() {
|
|
51455
51455
|
// magic, see build script "version.sh"
|
|
51456
|
-
return "2.107.
|
|
51456
|
+
return "2.107.4";
|
|
51457
51457
|
}
|
|
51458
51458
|
getDDICReferences() {
|
|
51459
51459
|
return this.ddicReferences;
|
|
@@ -52574,6 +52574,14 @@ ENDINTERFACE.`,
|
|
|
52574
52574
|
}
|
|
52575
52575
|
check(fields, column, file) {
|
|
52576
52576
|
const issues = [];
|
|
52577
|
+
const rows = new Set();
|
|
52578
|
+
for (const f of fields) {
|
|
52579
|
+
const row = f.after.getRow();
|
|
52580
|
+
if (rows.has(row)) {
|
|
52581
|
+
return [];
|
|
52582
|
+
}
|
|
52583
|
+
rows.add(row);
|
|
52584
|
+
}
|
|
52577
52585
|
for (const f of fields) {
|
|
52578
52586
|
if (f.after.getCol() === column) {
|
|
52579
52587
|
continue;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.107.
|
|
3
|
+
"version": "2.107.4",
|
|
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.107.
|
|
41
|
+
"@abaplint/core": "^2.107.4",
|
|
42
42
|
"@types/chai": "^4.3.16",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|