@abaplint/cli 2.113.175 → 2.113.176
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 +7 -2
- package/package.json +5 -5
package/build/cli.js
CHANGED
|
@@ -27799,7 +27799,8 @@ class Select {
|
|
|
27799
27799
|
input.issues.push((0, _syntax_input_1.syntaxIssue)(input, node.getFirstToken(), message));
|
|
27800
27800
|
return;
|
|
27801
27801
|
}
|
|
27802
|
-
const isSingle = node.getChildren()[1].concatTokens().toUpperCase() === "SINGLE"
|
|
27802
|
+
const isSingle = node.getChildren()[1].concatTokens().toUpperCase() === "SINGLE"
|
|
27803
|
+
|| node.get() instanceof Expressions.SelectLoop;
|
|
27803
27804
|
this.checkFields(fields, dbSources, input, node);
|
|
27804
27805
|
this.handleInto(node, input, fields, dbSources, isSingle);
|
|
27805
27806
|
const fae = node.findDirectExpression(Expressions.SQLForAllEntries);
|
|
@@ -54858,7 +54859,7 @@ class Registry {
|
|
|
54858
54859
|
}
|
|
54859
54860
|
static abaplintVersion() {
|
|
54860
54861
|
// magic, see build script "version.sh"
|
|
54861
|
-
return "2.113.
|
|
54862
|
+
return "2.113.176";
|
|
54862
54863
|
}
|
|
54863
54864
|
getDDICReferences() {
|
|
54864
54865
|
return this.ddicReferences;
|
|
@@ -79545,6 +79546,10 @@ function _supportsColor(haveStream, {streamIsTTY, sniffFlags = true} = {}) {
|
|
|
79545
79546
|
return 3;
|
|
79546
79547
|
}
|
|
79547
79548
|
|
|
79549
|
+
if (env.TERM === 'wezterm') {
|
|
79550
|
+
return 3;
|
|
79551
|
+
}
|
|
79552
|
+
|
|
79548
79553
|
if ('TERM_PROGRAM' in env) {
|
|
79549
79554
|
const version = Number.parseInt((env.TERM_PROGRAM_VERSION || '').split('.')[0], 10);
|
|
79550
79555
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.113.
|
|
3
|
+
"version": "2.113.176",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.113.
|
|
41
|
+
"@abaplint/core": "^2.113.176",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|
|
45
|
-
"@types/node": "^24.
|
|
45
|
+
"@types/node": "^24.3.0",
|
|
46
46
|
"@types/progress": "^2.0.7",
|
|
47
47
|
"chai": "^4.5.0",
|
|
48
48
|
"p-limit": "^3.1.0",
|
|
49
|
-
"chalk": "^5.
|
|
49
|
+
"chalk": "^5.6.0",
|
|
50
50
|
"eslint": "^9.33.0",
|
|
51
51
|
"glob": "^11.0.3",
|
|
52
52
|
"json5": "^2.2.3",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"mocha": "^11.7.1",
|
|
56
56
|
"progress": "^2.0.3",
|
|
57
57
|
"typescript": "^5.9.2",
|
|
58
|
-
"webpack": "^5.101.
|
|
58
|
+
"webpack": "^5.101.2",
|
|
59
59
|
"webpack-cli": "^6.0.1",
|
|
60
60
|
"xml-js": "^1.6.11"
|
|
61
61
|
}
|