@storm-software/linting-tools 1.26.5 → 1.26.6
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/CHANGELOG.md +7 -0
- package/cli/index.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.26.5](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.26.4...linting-tools-v1.26.5) (2024-01-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Removed instance of JSDocs parser in tsup patch ([4c8448e](https://github.com/storm-software/storm-ops/commit/4c8448eed32092d203621d4e05526a89d4b8e216))
|
|
7
|
+
|
|
1
8
|
## [1.26.4](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.26.3...linting-tools-v1.26.4) (2024-01-17)
|
|
2
9
|
|
|
3
10
|
|
package/cli/index.js
CHANGED
|
@@ -278278,8 +278278,8 @@ var LogLevelLabel = {
|
|
|
278278
278278
|
};
|
|
278279
278279
|
|
|
278280
278280
|
// packages/config-tools/src/utilities/find-up.ts
|
|
278281
|
-
import { existsSync } from "fs";
|
|
278282
|
-
import { join } from "path";
|
|
278281
|
+
import { existsSync } from "node:fs";
|
|
278282
|
+
import { join } from "node:path";
|
|
278283
278283
|
var MAX_PATH_SEARCH_DEPTH = 30;
|
|
278284
278284
|
var depth = 0;
|
|
278285
278285
|
function findFolderUp(startPath, endFileNames) {
|
|
@@ -278347,8 +278347,8 @@ Path: ${pathInsideMonorepo ? pathInsideMonorepo : process.cwd()}`
|
|
|
278347
278347
|
}
|
|
278348
278348
|
|
|
278349
278349
|
// packages/config-tools/src/utilities/get-default-config.ts
|
|
278350
|
-
import { existsSync as existsSync2, readFileSync } from "fs";
|
|
278351
|
-
import { join as join2 } from "path";
|
|
278350
|
+
import { existsSync as existsSync2, readFileSync } from "node:fs";
|
|
278351
|
+
import { join as join2 } from "node:path";
|
|
278352
278352
|
|
|
278353
278353
|
// node_modules/.pnpm/zod@3.22.4/node_modules/zod/lib/index.mjs
|
|
278354
278354
|
var util;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.6",
|
|
4
4
|
"private": false,
|
|
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
|
"keywords": [
|