@forwardimpact/libutil 0.1.89 → 0.1.90

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/runtime.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/libutil",
3
- "version": "0.1.89",
3
+ "version": "0.1.90",
4
4
  "description": "Cross-cutting utilities: retry, hashing, token counting, and project discovery.",
5
5
  "keywords": [
6
6
  "util",
package/src/runtime.js CHANGED
@@ -20,7 +20,7 @@ import { Finder } from "./finder.js";
20
20
  * @property {Object} fs
21
21
  * Async filesystem surface (the `node:fs/promises` shape): `readFile`,
22
22
  * `writeFile`, `readdir`, `stat`, `mkdir`, `access`, `copyFile`, `cp`, `rm`,
23
- * `lstat`, `unlink`, `symlink`, `utimes`, `chmod`, plus the two stream
23
+ * `lstat`, `unlink`, `rename`, `symlink`, `utimes`, `chmod`, plus the two stream
24
24
  * factories `createReadStream` / `createWriteStream` (the `node:fs` shape —
25
25
  * the promises API has no stream factories, so they live on the async
26
26
  * surface as the canonical streaming seam). A module destructures `fs` xor