@storm-software/workspace-tools 1.63.2 → 1.63.3
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 +2 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -0
- package/src/executors/tsup-browser/executor.js +2 -0
- package/src/executors/tsup-neutral/executor.js +2 -0
- package/src/executors/tsup-node/executor.js +2 -0
- package/src/utils/index.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.63.3 (2024-03-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Update workspace tools to change directory to workspace root ([c76a4782](https://github.com/storm-software/storm-ops/commit/c76a4782))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.63.2 (2024-03-03)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -474781,6 +474781,8 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
474781
474781
|
compilerOptions: {
|
|
474782
474782
|
...rawTsconfig.config?.compilerOptions,
|
|
474783
474783
|
outDir: outputPath,
|
|
474784
|
+
rootDir: ".",
|
|
474785
|
+
baseUrl: correctPaths(workspaceRoot),
|
|
474784
474786
|
noEmit: false,
|
|
474785
474787
|
emitDeclarationOnly: true,
|
|
474786
474788
|
declaration: true,
|