piral-cli 1.10.0-beta.8484 → 1.10.0-beta.8499

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.
@@ -53579,7 +53579,7 @@ var MAX = 1e4;
53579
53579
  var cache = /* @__PURE__ */ new Set();
53580
53580
  var normalizeUnicode = (s) => {
53581
53581
  if (!cache.has(s)) {
53582
- normalizeCache[s] = s.normalize("NFD");
53582
+ normalizeCache[s] = s.normalize("NFD").toLocaleLowerCase("en").toLocaleUpperCase("en");
53583
53583
  } else {
53584
53584
  cache.delete(s);
53585
53585
  }
@@ -53622,7 +53622,7 @@ var PathReservations = class {
53622
53622
  #running = /* @__PURE__ */ new Set();
53623
53623
  reserve(paths, fn) {
53624
53624
  paths = isWindows2 ? ["win32 parallelization disabled"] : paths.map((p) => {
53625
- return stripTrailingSlashes((0, import_node_path7.join)(normalizeUnicode(p))).toLowerCase();
53625
+ return stripTrailingSlashes((0, import_node_path7.join)(normalizeUnicode(p)));
53626
53626
  });
53627
53627
  const dirs = new Set(paths.map((path10) => getDirs(path10)).reduce((a, b) => a.concat(b)));
53628
53628
  this.#reservations.set(fn, { dirs, paths });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-cli",
3
- "version": "1.10.0-beta.8484",
3
+ "version": "1.10.0-beta.8499",
4
4
  "description": "The standard CLI for creating and building a Piral instance or a Pilet.",
5
5
  "keywords": [
6
6
  "portal",
@@ -78,5 +78,5 @@
78
78
  "open": "^10",
79
79
  "typescript": "^5"
80
80
  },
81
- "gitHead": "935b02783f9d918bd79c93d1bcd6ad231cb9b62f"
81
+ "gitHead": "5b546d0745323e2459342d39e96576b5ad4ea36b"
82
82
  }