@storm-software/workspace-tools 1.49.21 → 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,27 @@
|
|
|
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
|
+
|
|
13
|
+
## 1.49.22 (2024-01-25)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Apply `getConfig` parameter through executor hook ([1ae84274](https://github.com/storm-software/storm-ops/commit/1ae84274))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.49.21 (2024-01-25)
|
|
2
26
|
|
|
3
27
|
|
package/index.js
CHANGED
|
@@ -139685,7 +139685,8 @@ var applyDefaultOptions2 = (options) => {
|
|
|
139685
139685
|
plugins: [],
|
|
139686
139686
|
...options,
|
|
139687
139687
|
platform: "neutral"
|
|
139688
|
-
})
|
|
139688
|
+
}),
|
|
139689
|
+
getConfig: neutralConfig
|
|
139689
139690
|
};
|
|
139690
139691
|
};
|
|
139691
139692
|
var executor_default2 = withRunExecutor(
|
|
@@ -139808,8 +139809,13 @@ var tsupNodeBuildExecutorFn = (options, context, config) => {
|
|
|
139808
139809
|
};
|
|
139809
139810
|
var applyDefaultOptions3 = (options) => {
|
|
139810
139811
|
return {
|
|
139811
|
-
...applyDefaultOptions({
|
|
139812
|
-
|
|
139812
|
+
...applyDefaultOptions({
|
|
139813
|
+
plugins: [],
|
|
139814
|
+
...options,
|
|
139815
|
+
platform: "node"
|
|
139816
|
+
}),
|
|
139817
|
+
transports: ["pino-pretty", "pino-loki"],
|
|
139818
|
+
getConfig: nodeConfig
|
|
139813
139819
|
};
|
|
139814
139820
|
};
|
|
139815
139821
|
var executor_default3 = withRunExecutor(
|
|
@@ -139930,7 +139936,12 @@ var tsupBrowserBuildExecutorFn = (options, context, config) => {
|
|
|
139930
139936
|
};
|
|
139931
139937
|
var applyDefaultOptions4 = (options) => {
|
|
139932
139938
|
return {
|
|
139933
|
-
...applyDefaultOptions({
|
|
139939
|
+
...applyDefaultOptions({
|
|
139940
|
+
plugins: [],
|
|
139941
|
+
...options,
|
|
139942
|
+
platform: "browser"
|
|
139943
|
+
}),
|
|
139944
|
+
getConfig: browserConfig
|
|
139934
139945
|
};
|
|
139935
139946
|
};
|
|
139936
139947
|
var executor_default4 = withRunExecutor(
|