@storm-software/linting-tools 1.26.6 → 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 +7 -0
- package/cli/index.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
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)
|
|
2
9
|
|
|
3
10
|
|
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;
|
|
@@ -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": [
|