@storm-software/linting-tools 1.132.18 → 1.132.20

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/bin/lint.cjs CHANGED
@@ -337812,7 +337812,7 @@ minimatch2.unescape = unescape3;
337812
337812
  _chunkV5E2HRHHcjs.init_cjs_shims.call(void 0, );
337813
337813
 
337814
337814
 
337815
- // ../../node_modules/.pnpm/path-scurry@2.0.0/node_modules/path-scurry/dist/esm/index.js
337815
+ // ../../node_modules/.pnpm/path-scurry@2.0.1/node_modules/path-scurry/dist/esm/index.js
337816
337816
  _chunkV5E2HRHHcjs.init_cjs_shims.call(void 0, );
337817
337817
 
337818
337818
  // ../../node_modules/.pnpm/lru-cache@11.2.2/node_modules/lru-cache/dist/esm/index.js
@@ -339217,7 +339217,7 @@ var LRUCache2 = (_class90 = class _LRUCache {
339217
339217
  }
339218
339218
  }, _class90);
339219
339219
 
339220
- // ../../node_modules/.pnpm/path-scurry@2.0.0/node_modules/path-scurry/dist/esm/index.js
339220
+ // ../../node_modules/.pnpm/path-scurry@2.0.1/node_modules/path-scurry/dist/esm/index.js
339221
339221
 
339222
339222
 
339223
339223
 
@@ -339267,7 +339267,7 @@ var ENOREALPATH2 = 512;
339267
339267
  var ENOCHILD2 = ENOTDIR2 | ENOENT2 | ENOREALPATH2;
339268
339268
  var TYPEMASK2 = 1023;
339269
339269
  var entToType2 = (s) => s.isFile() ? IFREG2 : s.isDirectory() ? IFDIR2 : s.isSymbolicLink() ? IFLNK2 : s.isCharacterDevice() ? IFCHR2 : s.isBlockDevice() ? IFBLK2 : s.isSocket() ? IFSOCK2 : s.isFIFO() ? IFIFO2 : UNKNOWN2;
339270
- var normalizeCache2 = /* @__PURE__ */ new Map();
339270
+ var normalizeCache2 = new LRUCache2({ max: 2 ** 12 });
339271
339271
  var normalize6 = (s) => {
339272
339272
  const c = normalizeCache2.get(s);
339273
339273
  if (c)
@@ -339276,7 +339276,7 @@ var normalize6 = (s) => {
339276
339276
  normalizeCache2.set(s, n);
339277
339277
  return n;
339278
339278
  };
339279
- var normalizeNocaseCache2 = /* @__PURE__ */ new Map();
339279
+ var normalizeNocaseCache2 = new LRUCache2({ max: 2 ** 12 });
339280
339280
  var normalizeNocase2 = (s) => {
339281
339281
  const c = normalizeNocaseCache2.get(s);
339282
339282
  if (c)
@@ -339433,6 +339433,7 @@ var PathBase2 = (_class91 = class {
339433
339433
  get parentPath() {
339434
339434
  return (this.parent || this).fullpath();
339435
339435
  }
339436
+ /* c8 ignore start */
339436
339437
  /**
339437
339438
  * Deprecated alias for Dirent['parentPath'] Somewhat counterintuitively,
339438
339439
  * this property refers to the *parent* path, not the path object itself.
@@ -339442,6 +339443,7 @@ var PathBase2 = (_class91 = class {
339442
339443
  get path() {
339443
339444
  return this.parentPath;
339444
339445
  }
339446
+ /* c8 ignore stop */
339445
339447
  /**
339446
339448
  * Do not create new Path objects directly. They should always be accessed
339447
339449
  * via the PathScurry class or other methods on the Path class.
package/bin/lint.js CHANGED
@@ -329423,7 +329423,7 @@ minimatch2.unescape = unescape3;
329423
329423
  init_esm_shims();
329424
329424
  import { fileURLToPath as fileURLToPath26 } from "node:url";
329425
329425
 
329426
- // ../../node_modules/.pnpm/path-scurry@2.0.0/node_modules/path-scurry/dist/esm/index.js
329426
+ // ../../node_modules/.pnpm/path-scurry@2.0.1/node_modules/path-scurry/dist/esm/index.js
329427
329427
  init_esm_shims();
329428
329428
 
329429
329429
  // ../../node_modules/.pnpm/lru-cache@11.2.2/node_modules/lru-cache/dist/esm/index.js
@@ -330828,7 +330828,7 @@ var LRUCache2 = class _LRUCache {
330828
330828
  }
330829
330829
  };
330830
330830
 
330831
- // ../../node_modules/.pnpm/path-scurry@2.0.0/node_modules/path-scurry/dist/esm/index.js
330831
+ // ../../node_modules/.pnpm/path-scurry@2.0.1/node_modules/path-scurry/dist/esm/index.js
330832
330832
  init_esm4();
330833
330833
  import { posix as posix5, win32 as win322 } from "node:path";
330834
330834
  import { fileURLToPath as fileURLToPath25 } from "node:url";
@@ -330879,7 +330879,7 @@ var ENOREALPATH2 = 512;
330879
330879
  var ENOCHILD2 = ENOTDIR2 | ENOENT2 | ENOREALPATH2;
330880
330880
  var TYPEMASK2 = 1023;
330881
330881
  var entToType2 = (s) => s.isFile() ? IFREG2 : s.isDirectory() ? IFDIR2 : s.isSymbolicLink() ? IFLNK2 : s.isCharacterDevice() ? IFCHR2 : s.isBlockDevice() ? IFBLK2 : s.isSocket() ? IFSOCK2 : s.isFIFO() ? IFIFO2 : UNKNOWN2;
330882
- var normalizeCache2 = /* @__PURE__ */ new Map();
330882
+ var normalizeCache2 = new LRUCache2({ max: 2 ** 12 });
330883
330883
  var normalize6 = (s) => {
330884
330884
  const c = normalizeCache2.get(s);
330885
330885
  if (c)
@@ -330888,7 +330888,7 @@ var normalize6 = (s) => {
330888
330888
  normalizeCache2.set(s, n);
330889
330889
  return n;
330890
330890
  };
330891
- var normalizeNocaseCache2 = /* @__PURE__ */ new Map();
330891
+ var normalizeNocaseCache2 = new LRUCache2({ max: 2 ** 12 });
330892
330892
  var normalizeNocase2 = (s) => {
330893
330893
  const c = normalizeNocaseCache2.get(s);
330894
330894
  if (c)
@@ -331045,6 +331045,7 @@ var PathBase2 = class {
331045
331045
  get parentPath() {
331046
331046
  return (this.parent || this).fullpath();
331047
331047
  }
331048
+ /* c8 ignore start */
331048
331049
  /**
331049
331050
  * Deprecated alias for Dirent['parentPath'] Somewhat counterintuitively,
331050
331051
  * this property refers to the *parent* path, not the path object itself.
@@ -331054,6 +331055,7 @@ var PathBase2 = class {
331054
331055
  get path() {
331055
331056
  return this.parentPath;
331056
331057
  }
331058
+ /* c8 ignore stop */
331057
331059
  /**
331058
331060
  * Do not create new Path objects directly. They should always be accessed
331059
331061
  * via the PathScurry class or other methods on the Path class.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/linting-tools",
3
- "version": "1.132.18",
3
+ "version": "1.132.20",
4
4
  "type": "module",
5
5
  "description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
6
6
  "repository": {
@@ -129,7 +129,7 @@
129
129
  "dpdm": "3.14.0",
130
130
  "fs-extra": "11.2.0",
131
131
  "glob": "^11.0.3",
132
- "knip": "^5.67.1",
132
+ "knip": "^5.68.0",
133
133
  "octokit": "4.0.2",
134
134
  "p-limit": "5.0.0",
135
135
  "rehype-parse": "9.0.0",
@@ -149,5 +149,5 @@
149
149
  "vfile-reporter": "8.1.1"
150
150
  },
151
151
  "publishConfig": { "access": "public" },
152
- "gitHead": "4ff7ccead93c470ebb8b9ad5fcd7e70f3a122cbf"
152
+ "gitHead": "5ad820059b34c3802d3a0b96e521ec54e2fb3a49"
153
153
  }