@storm-software/workspace-tools 1.179.1 → 1.179.2

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,13 @@
1
+ ## 1.179.2 (2024-09-08)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **workspace-tools:** Update the compiler options used in TypeScript plugin
6
+ ([b788e426](https://github.com/storm-software/storm-ops/commit/b788e426))
7
+
8
+ - **workspace-tools:** Resolved issue with returned value in Rust plugin
9
+ ([f37a1f44](https://github.com/storm-software/storm-ops/commit/f37a1f44))
10
+
1
11
  ## 1.179.1 (2024-09-08)
2
12
 
3
13
  ### Features
package/index.js CHANGED
@@ -437723,7 +437723,7 @@ async function createTsCompilerOptions(parsedCommandLine, options, dependencies,
437723
437723
  dependencies ?? []
437724
437724
  );
437725
437725
  const compilerOptions = {
437726
- rootDir: correctPaths2(config?.workspaceRoot),
437726
+ rootDir: correctPaths2(config?.workspaceRoot).replace("/", "\\"),
437727
437727
  declaration: true,
437728
437728
  skipLibCheck: true,
437729
437729
  skipDefaultLibCheck: true,