@storm-software/workspace-tools 1.63.4 → 1.63.5
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 +1 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +1 -0
- package/src/executors/tsup-browser/executor.js +1 -0
- package/src/executors/tsup-neutral/executor.js +1 -0
- package/src/executors/tsup-node/executor.js +1 -0
- package/src/utils/index.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.63.5 (2024-03-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Update the compiler option paths after normalization ([98128e4e](https://github.com/storm-software/storm-ops/commit/98128e4e))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.63.4 (2024-03-05)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -474674,6 +474674,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
474674
474674
|
var runTsupBuild = async (context, config, options8) => {
|
|
474675
474675
|
const { writeInfo, writeTrace, writeWarning, correctPaths, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
474676
474676
|
const workspaceRoot = correctPaths(config?.workspaceRoot ?? findWorkspaceRoot());
|
|
474677
|
+
process.chdir(workspaceRoot);
|
|
474677
474678
|
const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
|
|
474678
474679
|
ret[key2] = options8.env?.[key2];
|
|
474679
474680
|
return ret;
|