@storm-software/workspace-tools 1.62.22 → 1.62.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 +12 -0
- package/index.js +4 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +4 -2
- package/src/executors/tsup-browser/executor.js +4 -2
- package/src/executors/tsup-neutral/executor.js +4 -2
- package/src/executors/tsup-node/executor.js +4 -2
- package/src/utils/index.js +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.62.23 (2024-03-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Update the env values passed into tsup builder ([43b65257](https://github.com/storm-software/storm-ops/commit/43b65257))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.62.22 (2024-03-01)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -474696,8 +474696,10 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
474696
474696
|
},
|
|
474697
474697
|
env: {
|
|
474698
474698
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
474699
|
-
...
|
|
474700
|
-
|
|
474699
|
+
...Object.keys(options8.env ?? {}).filter((key2) => !key2.includes("(") && !key2.includes(")")).reduce((ret, key2) => {
|
|
474700
|
+
ret[key2] = options8.env?.[key2];
|
|
474701
|
+
return ret;
|
|
474702
|
+
}, {})
|
|
474701
474703
|
},
|
|
474702
474704
|
dtsTsConfig: getNormalizedTsConfig(
|
|
474703
474705
|
workspaceRoot,
|