@storm-software/workspace-tools 1.62.21 → 1.62.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 +12 -0
- package/index.js +4 -3
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +1 -1
- package/src/executors/tsup/executor.js +4 -3
- package/src/executors/tsup-browser/executor.js +4 -3
- package/src/executors/tsup-neutral/executor.js +4 -3
- package/src/executors/tsup-node/executor.js +4 -3
- package/src/executors/typia/executor.js +1 -1
- package/src/utils/index.js +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.62.22 (2024-03-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Remove the storm env filter ([48259eea](https://github.com/storm-software/storm-ops/commit/48259eea))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.62.21 (2024-03-01)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -473886,7 +473886,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
473886
473886
|
writeTrace(
|
|
473887
473887
|
config,
|
|
473888
473888
|
`Loaded Storm config into env:
|
|
473889
|
-
${Object.keys(process.env).map(
|
|
473889
|
+
${Object.keys(process.env).filter((key2) => key2.startsWith("STORM_")).map(
|
|
473890
473890
|
(key2) => ` - ${key2}=${_isFunction(process.env[key2]) ? "<function>" : JSON.stringify(process.env[key2])}`
|
|
473891
473891
|
).join("\n")}`
|
|
473892
473892
|
);
|
|
@@ -474673,7 +474673,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
474673
474673
|
var runTsupBuild = async (context, config, options8) => {
|
|
474674
474674
|
const { writeInfo, writeWarning, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
474675
474675
|
const workspaceRoot = config?.workspaceRoot ?? findWorkspaceRoot();
|
|
474676
|
-
const stormEnv = Object.keys(options8.env ?? {}).reduce((ret, key2) => {
|
|
474676
|
+
const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
|
|
474677
474677
|
ret[key2] = options8.env?.[key2];
|
|
474678
474678
|
return ret;
|
|
474679
474679
|
}, {});
|
|
@@ -474696,7 +474696,8 @@ var runTsupBuild = async (context, config, options8) => {
|
|
|
474696
474696
|
},
|
|
474697
474697
|
env: {
|
|
474698
474698
|
__STORM_CONFIG: JSON.stringify(stormEnv),
|
|
474699
|
-
...
|
|
474699
|
+
...process.env,
|
|
474700
|
+
...options8.env
|
|
474700
474701
|
},
|
|
474701
474702
|
dtsTsConfig: getNormalizedTsConfig(
|
|
474702
474703
|
workspaceRoot,
|