@abaplint/cli 2.113.28 → 2.113.30
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 +3 -3
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -46645,14 +46645,14 @@ class DataDefinition extends _abstract_object_1.AbstractObject {
|
|
|
46645
46645
|
//////////
|
|
46646
46646
|
findSQLViewName() {
|
|
46647
46647
|
var _a;
|
|
46648
|
-
const match = (_a = this.findSourceFile()) === null || _a === void 0 ? void 0 : _a.getRaw().match(/@AbapCatalog\.sqlViewName: '(\w+)'/);
|
|
46648
|
+
const match = (_a = this.findSourceFile()) === null || _a === void 0 ? void 0 : _a.getRaw().match(/@AbapCatalog\.sqlViewName: '([\w/]+)'/);
|
|
46649
46649
|
if (match) {
|
|
46650
46650
|
this.parsedData.sqlViewName = match[1].toUpperCase();
|
|
46651
46651
|
}
|
|
46652
46652
|
}
|
|
46653
46653
|
findDescription() {
|
|
46654
46654
|
var _a;
|
|
46655
|
-
const match = (_a = this.findSourceFile()) === null || _a === void 0 ? void 0 : _a.getRaw().match(/@EndUserText\.label: '([\w
|
|
46655
|
+
const match = (_a = this.findSourceFile()) === null || _a === void 0 ? void 0 : _a.getRaw().match(/@EndUserText\.label: '([\w,.:-=#%&() ]+)'/);
|
|
46656
46656
|
if (match) {
|
|
46657
46657
|
return match[1];
|
|
46658
46658
|
}
|
|
@@ -52865,7 +52865,7 @@ class Registry {
|
|
|
52865
52865
|
}
|
|
52866
52866
|
static abaplintVersion() {
|
|
52867
52867
|
// magic, see build script "version.sh"
|
|
52868
|
-
return "2.113.
|
|
52868
|
+
return "2.113.30";
|
|
52869
52869
|
}
|
|
52870
52870
|
getDDICReferences() {
|
|
52871
52871
|
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.30",
|
|
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.30",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/glob": "^8.1.0",
|
|
44
44
|
"@types/minimist": "^1.2.5",
|