@storm-software/workspace-tools 1.49.22 → 1.49.23
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
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.49.23 (2024-01-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Resolved issue with providing getConfig function to defaulter ([e251eed9](https://github.com/storm-software/storm-ops/commit/e251eed9))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.49.22 (2024-01-25)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -139684,9 +139684,9 @@ var applyDefaultOptions2 = (options) => {
|
|
|
139684
139684
|
...applyDefaultOptions({
|
|
139685
139685
|
plugins: [],
|
|
139686
139686
|
...options,
|
|
139687
|
-
platform: "neutral"
|
|
139688
|
-
|
|
139689
|
-
|
|
139687
|
+
platform: "neutral"
|
|
139688
|
+
}),
|
|
139689
|
+
getConfig: neutralConfig
|
|
139690
139690
|
};
|
|
139691
139691
|
};
|
|
139692
139692
|
var executor_default2 = withRunExecutor(
|
|
@@ -139812,10 +139812,10 @@ var applyDefaultOptions3 = (options) => {
|
|
|
139812
139812
|
...applyDefaultOptions({
|
|
139813
139813
|
plugins: [],
|
|
139814
139814
|
...options,
|
|
139815
|
-
platform: "node"
|
|
139816
|
-
getConfig: nodeConfig
|
|
139815
|
+
platform: "node"
|
|
139817
139816
|
}),
|
|
139818
|
-
transports: ["pino-pretty", "pino-loki"]
|
|
139817
|
+
transports: ["pino-pretty", "pino-loki"],
|
|
139818
|
+
getConfig: nodeConfig
|
|
139819
139819
|
};
|
|
139820
139820
|
};
|
|
139821
139821
|
var executor_default3 = withRunExecutor(
|
|
@@ -139939,9 +139939,9 @@ var applyDefaultOptions4 = (options) => {
|
|
|
139939
139939
|
...applyDefaultOptions({
|
|
139940
139940
|
plugins: [],
|
|
139941
139941
|
...options,
|
|
139942
|
-
platform: "browser"
|
|
139943
|
-
|
|
139944
|
-
|
|
139942
|
+
platform: "browser"
|
|
139943
|
+
}),
|
|
139944
|
+
getConfig: browserConfig
|
|
139945
139945
|
};
|
|
139946
139946
|
};
|
|
139947
139947
|
var executor_default4 = withRunExecutor(
|