@abaplint/cli 2.117.2 → 2.117.3

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
@@ -55816,7 +55816,7 @@ class Registry {
55816
55816
  }
55817
55817
  static abaplintVersion() {
55818
55818
  // magic, see build script "version.sh"
55819
- return "2.117.2";
55819
+ return "2.117.3";
55820
55820
  }
55821
55821
  getDDICReferences() {
55822
55822
  return this.ddicReferences;
@@ -75611,7 +75611,7 @@ class SMIMConsistency {
75611
75611
  key: "smim_consistency",
75612
75612
  title: "SMIM consistency check",
75613
75613
  shortDescription: `SMIM consistency check`,
75614
- extendedInformation: "Check folders exists",
75614
+ extendedInformation: "Checks that the parent folder of each MIME object exists in the registry. The SAP system folder /SAP/PUBLIC is always allowed as a parent even if not present in the repository.",
75615
75615
  };
75616
75616
  }
75617
75617
  getConfig() {
@@ -75630,7 +75630,7 @@ class SMIMConsistency {
75630
75630
  return [];
75631
75631
  }
75632
75632
  const base = this.base(obj.getURL() || "");
75633
- if (base !== "" && this.findFolder(base) === false) {
75633
+ if (base !== "" && base !== "/SAP/PUBLIC" && this.findFolder(base) === false) {
75634
75634
  const message = `Parent folder "${base}" not found`;
75635
75635
  const position = new position_1.Position(1, 1);
75636
75636
  const issue = issue_1.Issue.atPosition(obj.getFiles()[0], position, message, this.getMetadata().key, this.conf.severity);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/cli",
3
- "version": "2.117.2",
3
+ "version": "2.117.3",
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.117.2",
41
+ "@abaplint/core": "^2.117.3",
42
42
  "@types/chai": "^4.3.20",
43
43
  "@types/minimist": "^1.2.5",
44
44
  "@types/mocha": "^10.0.10",