@storm-software/workspace-tools 1.62.34 → 1.62.36

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,27 @@
1
+ ## 1.62.36 (2024-03-03)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Updated the `workspaceRoot` applied to compiler options ([8b18d8c3](https://github.com/storm-software/storm-ops/commit/8b18d8c3))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
13
+ ## 1.62.35 (2024-03-03)
14
+
15
+
16
+ ### 🩹 Fixes
17
+
18
+ - **workspace-tools:** Ensure file paths are valid in `fileNames` array ([0f15dabc](https://github.com/storm-software/storm-ops/commit/0f15dabc))
19
+
20
+
21
+ ### ❤️ Thank You
22
+
23
+ - Patrick Sullivan
24
+
1
25
  ## 1.62.34 (2024-03-03)
2
26
 
3
27
 
package/index.js CHANGED
@@ -474778,8 +474778,8 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
474778
474778
  ...rawTsconfig.config,
474779
474779
  compilerOptions: {
474780
474780
  ...rawTsconfig.config?.compilerOptions,
474781
- rootDir: workspaceRoot,
474782
- baseUrl: workspaceRoot,
474781
+ rootDir: ".",
474782
+ baseUrl: ".",
474783
474783
  outDir: outputPath,
474784
474784
  noEmit: false,
474785
474785
  emitDeclarationOnly: true,
@@ -474791,7 +474791,7 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
474791
474791
  import_typescript.sys,
474792
474792
  correctPaths((0, import_node_path2.dirname)(options8.tsConfig))
474793
474793
  );
474794
- parsedTsconfig.options.pathsBasePath = workspaceRoot;
474794
+ parsedTsconfig.options.pathsBasePath = correctPaths(workspaceRoot);
474795
474795
  if (parsedTsconfig.options.paths) {
474796
474796
  parsedTsconfig.options.paths = Object.keys(parsedTsconfig.options.paths).reduce(
474797
474797
  (ret, key2) => {