@abaplint/cli 2.113.94 → 2.113.95

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.
Files changed (2) hide show
  1. package/build/cli.js +3 -3
  2. package/package.json +2 -2
package/build/cli.js CHANGED
@@ -48472,13 +48472,13 @@ class FunctionGroup extends _abap_object_1.ABAPObject {
48472
48472
  if (namespaced) {
48473
48473
  search = search.replace(/\//g, "#");
48474
48474
  }
48475
- if ((i.startsWith("L") || namespaced) && f.getFilename().includes(search.toLowerCase())) {
48475
+ if ((i.startsWith("L") || namespaced) && f.getFilename().includes(search.toLowerCase() + ".")) {
48476
48476
  ret.push({ file: f, name: i });
48477
48477
  }
48478
48478
  // fix for URL encoded? Uris
48479
48479
  if (namespaced) {
48480
48480
  search = i.replace(/\//g, "%23");
48481
- if (f.getFilename().includes(search.toLowerCase())) {
48481
+ if (f.getFilename().includes(search.toLowerCase() + ".")) {
48482
48482
  ret.push({ file: f, name: i });
48483
48483
  }
48484
48484
  }
@@ -53811,7 +53811,7 @@ class Registry {
53811
53811
  }
53812
53812
  static abaplintVersion() {
53813
53813
  // magic, see build script "version.sh"
53814
- return "2.113.94";
53814
+ return "2.113.95";
53815
53815
  }
53816
53816
  getDDICReferences() {
53817
53817
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.113.94",
3
+ "version": "2.113.95",
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.94",
41
+ "@abaplint/core": "^2.113.95",
42
42
  "@types/chai": "^4.3.20",
43
43
  "@types/glob": "^8.1.0",
44
44
  "@types/minimist": "^1.2.5",