@storm-software/workspace-tools 1.62.30 → 1.62.31

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,15 @@
1
+ ## 1.62.31 (2024-03-01)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Enhance collecting compiler options and logging ([a1c4d41f](https://github.com/storm-software/storm-ops/commit/a1c4d41f))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
1
13
  ## 1.62.30 (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.replaceAll("\\", "/"),
474781
+ baseUrl: workspaceRoot.replaceAll("\\", "/"),
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, "tmp", ".tsup", "declaration")
474787
+ declarationDir: (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), "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.replaceAll("\\", "/");
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, path15)
474799
+ (path15) => (0, import_node_path2.join)(workspaceRoot.replaceAll("\\", "/"), path15)
474800
474800
  );
474801
474801
  }
474802
474802
  return ret;