@storm-software/linting-tools 1.26.5 → 1.26.7
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 +14 -0
- package/cli/index.js +7 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.26.6](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.26.5...linting-tools-v1.26.6) (2024-01-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Added code to properly parse out the config file ([c345fef](https://github.com/storm-software/storm-ops/commit/c345fefc6389a9a10b3f5b8446eb76982f45e6f7))
|
|
7
|
+
|
|
8
|
+
## [1.26.5](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.26.4...linting-tools-v1.26.5) (2024-01-17)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Removed instance of JSDocs parser in tsup patch ([4c8448e](https://github.com/storm-software/storm-ops/commit/4c8448eed32092d203621d4e05526a89d4b8e216))
|
|
14
|
+
|
|
1
15
|
## [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
16
|
|
|
3
17
|
|
package/cli/index.js
CHANGED
|
@@ -278218,7 +278218,7 @@ var init_lib2 = __esm({
|
|
|
278218
278218
|
// packages/config-tools/src/config-file/get-config-file.ts
|
|
278219
278219
|
var import_cosmiconfig = __toESM(require_dist(), 1);
|
|
278220
278220
|
var _static_cache = void 0;
|
|
278221
|
-
var getConfigFileName = (fileName, filePath2) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath2);
|
|
278221
|
+
var getConfigFileName = async (fileName, filePath2) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath2);
|
|
278222
278222
|
var getConfigFile = async (filePath2) => {
|
|
278223
278223
|
if (_static_cache) {
|
|
278224
278224
|
return _static_cache;
|
|
@@ -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;
|
|
@@ -282041,9 +282041,9 @@ var getDefaultConfig = (config2 = {}, root) => {
|
|
|
282041
282041
|
}
|
|
282042
282042
|
}
|
|
282043
282043
|
return StormConfigSchema.parse({
|
|
282044
|
-
...config2,
|
|
282045
282044
|
...DefaultStormConfig,
|
|
282046
|
-
|
|
282045
|
+
...config2,
|
|
282046
|
+
colors: { ...DefaultColorConfig, ...config2.colors },
|
|
282047
282047
|
workspaceRoot,
|
|
282048
282048
|
name,
|
|
282049
282049
|
namespace,
|
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.7",
|
|
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": [
|