@storm-software/config-tools 1.91.5 → 1.91.6
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 +9 -2
- package/README.md +1 -1
- package/index.cjs +0 -1
- package/index.js +0 -1
- package/meta.cjs.json +1 -1
- package/meta.esm.json +1 -1
- package/package.json +1 -1
- package/utilities/find-workspace-root.cjs +0 -1
- package/utilities/find-workspace-root.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
|
-
## 1.91.
|
|
1
|
+
## 1.91.6 (2024-09-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
- **config-tools:** Resolve issues with slashes in paths ([e1e5f571](https://github.com/storm-software/storm-ops/commit/e1e5f571))
|
|
2
7
|
|
|
8
|
+
## 1.91.5 (2024-09-10)
|
|
3
9
|
|
|
4
10
|
### Bug Fixes
|
|
5
11
|
|
|
6
|
-
- **build-tools:** Resolve issue with the raw configuration parameters
|
|
12
|
+
- **build-tools:** Resolve issue with the raw configuration parameters
|
|
13
|
+
([bbd59f22](https://github.com/storm-software/storm-ops/commit/bbd59f22))
|
|
7
14
|
|
|
8
15
|
## 1.91.4 (2024-09-10)
|
|
9
16
|
|
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,7 +62855,6 @@ var correctPaths = (path5) => {
|
|
|
62855
62855
|
}
|
|
62856
62856
|
if (!path5.toUpperCase().startsWith("C:") && path5.includes("\\")) {
|
|
62857
62857
|
path5 = `C:${path5}`;
|
|
62858
|
-
return path5.replaceAll("/", "\\");
|
|
62859
62858
|
}
|
|
62860
62859
|
return path5.replaceAll("\\", "/");
|
|
62861
62860
|
};
|
package/index.js
CHANGED
|
@@ -62812,7 +62812,6 @@ var correctPaths = (path5) => {
|
|
|
62812
62812
|
}
|
|
62813
62813
|
if (!path5.toUpperCase().startsWith("C:") && path5.includes("\\")) {
|
|
62814
62814
|
path5 = `C:${path5}`;
|
|
62815
|
-
return path5.replaceAll("/", "\\");
|
|
62816
62815
|
}
|
|
62817
62816
|
return path5.replaceAll("\\", "/");
|
|
62818
62817
|
};
|