@storm-software/workspace-tools 1.62.31 → 1.62.32
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 +5 -5
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +5 -5
- package/src/executors/tsup-browser/executor.js +5 -5
- package/src/executors/tsup-neutral/executor.js +5 -5
- package/src/executors/tsup-node/executor.js +5 -5
- package/src/utils/index.js +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.62.32 (2024-03-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Update `workspaceRoot` to no longer include backslash characters ([f2190736](https://github.com/storm-software/storm-ops/commit/f2190736))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.62.31 (2024-03-01)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -474777,26 +474777,26 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
474777
474777
|
...rawTsconfig.config,
|
|
474778
474778
|
compilerOptions: {
|
|
474779
474779
|
...rawTsconfig.config?.compilerOptions,
|
|
474780
|
-
rootDir: workspaceRoot
|
|
474781
|
-
baseUrl: workspaceRoot
|
|
474780
|
+
rootDir: workspaceRoot,
|
|
474781
|
+
baseUrl: workspaceRoot,
|
|
474782
474782
|
outDir: outputPath,
|
|
474783
474783
|
noEmit: false,
|
|
474784
474784
|
emitDeclarationOnly: true,
|
|
474785
474785
|
declaration: true,
|
|
474786
474786
|
declarationMap: true,
|
|
474787
|
-
declarationDir: (0, import_node_path2.join)(workspaceRoot
|
|
474787
|
+
declarationDir: (0, import_node_path2.join)(workspaceRoot, "tmp", ".tsup", "declaration")
|
|
474788
474788
|
}
|
|
474789
474789
|
},
|
|
474790
474790
|
import_typescript.sys,
|
|
474791
474791
|
(0, import_node_path2.dirname)(options8.tsConfig)
|
|
474792
474792
|
);
|
|
474793
|
-
parsedTsconfig.options.pathsBasePath = workspaceRoot
|
|
474793
|
+
parsedTsconfig.options.pathsBasePath = workspaceRoot;
|
|
474794
474794
|
if (parsedTsconfig.options.paths) {
|
|
474795
474795
|
parsedTsconfig.options.paths = Object.keys(parsedTsconfig.options.paths).reduce(
|
|
474796
474796
|
(ret, key2) => {
|
|
474797
474797
|
if (parsedTsconfig.options.paths?.[key2]) {
|
|
474798
474798
|
ret[key2] = parsedTsconfig.options.paths[key2]?.map(
|
|
474799
|
-
(path15) => (0, import_node_path2.join)(workspaceRoot
|
|
474799
|
+
(path15) => (0, import_node_path2.join)(workspaceRoot, path15)
|
|
474800
474800
|
);
|
|
474801
474801
|
}
|
|
474802
474802
|
return ret;
|