@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 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
- ...process.env,
474700
- ...options8.env
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,