@storm-software/config-tools 1.91.1 → 1.91.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 +17 -0
- package/README.md +1 -1
- package/index.cjs +1 -0
- package/index.js +1 -0
- package/meta.cjs.json +1 -1
- package/meta.esm.json +1 -1
- package/package.json +1 -1
- package/utilities/find-workspace-root.cjs +1 -0
- package/utilities/find-workspace-root.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## 1.91.3 (2024-09-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Resolve issue with workspace paths ([1b3305e6](https://github.com/storm-software/storm-ops/commit/1b3305e6))
|
|
7
|
+
|
|
8
|
+
## 1.91.2 (2024-09-08)
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
- **workspace-tools:** Update the compiler options used in TypeScript plugin
|
|
13
|
+
([b788e426](https://github.com/storm-software/storm-ops/commit/b788e426))
|
|
14
|
+
|
|
15
|
+
- **workspace-tools:** Resolved issue with returned value in Rust plugin
|
|
16
|
+
([f37a1f44](https://github.com/storm-software/storm-ops/commit/f37a1f44))
|
|
17
|
+
|
|
1
18
|
## 1.91.1 (2024-09-08)
|
|
2
19
|
|
|
3
20
|
### Features
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/index.cjs
CHANGED
|
@@ -62855,6 +62855,7 @@ var correctPaths = (path5) => {
|
|
|
62855
62855
|
}
|
|
62856
62856
|
if (!path5.toUpperCase().startsWith("C:") && path5.includes("\\")) {
|
|
62857
62857
|
path5 = `C:${path5}`;
|
|
62858
|
+
return path5.replaceAll("/", "\\");
|
|
62858
62859
|
}
|
|
62859
62860
|
return path5.replaceAll("\\", "/");
|
|
62860
62861
|
};
|
package/index.js
CHANGED
|
@@ -62812,6 +62812,7 @@ var correctPaths = (path5) => {
|
|
|
62812
62812
|
}
|
|
62813
62813
|
if (!path5.toUpperCase().startsWith("C:") && path5.includes("\\")) {
|
|
62814
62814
|
path5 = `C:${path5}`;
|
|
62815
|
+
return path5.replaceAll("/", "\\");
|
|
62815
62816
|
}
|
|
62816
62817
|
return path5.replaceAll("\\", "/");
|
|
62817
62818
|
};
|