@storm-software/workspace-tools 1.49.21 → 1.49.22
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.22 (2024-01-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Apply `getConfig` parameter through executor hook ([1ae84274](https://github.com/storm-software/storm-ops/commit/1ae84274))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.49.21 (2024-01-25)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -139684,7 +139684,8 @@ var applyDefaultOptions2 = (options) => {
|
|
|
139684
139684
|
...applyDefaultOptions({
|
|
139685
139685
|
plugins: [],
|
|
139686
139686
|
...options,
|
|
139687
|
-
platform: "neutral"
|
|
139687
|
+
platform: "neutral",
|
|
139688
|
+
getConfig: neutralConfig
|
|
139688
139689
|
})
|
|
139689
139690
|
};
|
|
139690
139691
|
};
|
|
@@ -139808,7 +139809,12 @@ var tsupNodeBuildExecutorFn = (options, context, config) => {
|
|
|
139808
139809
|
};
|
|
139809
139810
|
var applyDefaultOptions3 = (options) => {
|
|
139810
139811
|
return {
|
|
139811
|
-
...applyDefaultOptions({
|
|
139812
|
+
...applyDefaultOptions({
|
|
139813
|
+
plugins: [],
|
|
139814
|
+
...options,
|
|
139815
|
+
platform: "node",
|
|
139816
|
+
getConfig: nodeConfig
|
|
139817
|
+
}),
|
|
139812
139818
|
transports: ["pino-pretty", "pino-loki"]
|
|
139813
139819
|
};
|
|
139814
139820
|
};
|
|
@@ -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
|
+
getConfig: browserConfig
|
|
139944
|
+
})
|
|
139934
139945
|
};
|
|
139935
139946
|
};
|
|
139936
139947
|
var executor_default4 = withRunExecutor(
|