@williamthorsen/toolbelt.filesystem 0.9.0 → 0.9.1

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.
@@ -1,6 +1,6 @@
1
1
  /** @noformat -- @generated. Do not edit. Compiled by rdy. */
2
2
  /* eslint-disable */
3
- export const __readyupVersion = "0.36.0";
3
+ export const __readyupVersion = "0.37.0";
4
4
 
5
5
 
6
6
  // ../adoption/src/conventions/path-predicates.ts
@@ -91,10 +91,10 @@
91
91
  ],
92
92
  "name": "default",
93
93
  "path": "kits/default.js",
94
- "readyupVersion": "0.36.0",
94
+ "readyupVersion": "0.37.0",
95
95
  "source": "kits/default.ts",
96
96
  "sourceHash": "3c3de241",
97
- "targetHash": "3f2a9a3c"
97
+ "targetHash": "5a6d227a"
98
98
  }
99
99
  ]
100
100
  }
package/README.md CHANGED
@@ -4,40 +4,7 @@
4
4
 
5
5
  Filesystem utilities for TypeScript and JavaScript.
6
6
 
7
- <!-- section:release-notes -->
8
- ## Release notes — v0.9.0 (2026-09-15)
9
-
10
- ### 🎉 Features
11
-
12
- - 🚨 **Breaking:** Move createTempTree from toolbelt.filesystem to toolbelt.testing (#313)
13
-
14
- - Moves `CreateTempTreeOptions` and the `TempTree` handle to `@williamthorsen/toolbelt.testing/candidate` along with `createTempTree`.
15
-
16
- Migration: Import `createTempTree`, `CreateTempTreeOptions`, and `TempTree` from `@williamthorsen/toolbelt.testing/candidate`, and declare `@williamthorsen/toolbelt.testing` in the manifest that declared `@williamthorsen/toolbelt.filesystem` for them.
17
-
18
- - Add a ReadyUp adoption kit to toolbelt.filesystem (#316)
19
-
20
- - Adds a ReadyUp adoption kit to `@williamthorsen/toolbelt.filesystem` that recommends `writeAtomic` where a project writes a file to a temporary path and renames it into place, and `listDirectoryChain`, `findDirectoryChainMatch`, or `listDirectoryChainMatches` where a loop ascends to the filesystem root by `path.dirname`.
21
- - Promotes `writeAtomic` to the candidate tier.
22
-
23
- Migration: Change any import of `writeAtomic` from `@williamthorsen/toolbelt.filesystem/proposed` to `@williamthorsen/toolbelt.filesystem/candidate`.
24
-
25
- - Read a directory walk's probed name through a binding or constant (#324)
26
-
27
- - Extends the ReadyUp adoption kit in `@williamthorsen/toolbelt.packaging` to recommend `findPackageRoot` or `resolveSelfVersion` for a hand-rolled `package.json` search that checks for the file through a variable declared once inside its loop and never reassigned there, or through a string constant declared once in the same file.
28
- - Stops the kit in `@williamthorsen/toolbelt.filesystem` from reporting such a search, which it previously treated as a generic directory walk.
29
-
30
- - Report hand-rolled dedents in the strings adoption kit (#330)
31
-
32
- - Adds `no-joined-line-array`, which reports an array of string or template literals that spans several lines and is joined with a newline.
33
- - Adds `no-layout-breaking-template`, which reports an untagged template literal whose later lines drop below the indentation of the line on which it opens.
34
-
35
- ### 🐛 Bug fixes
36
-
37
- - Stop reading each segment of a probe's path as a separately probed name (#320)
38
-
39
- - Fixes an issue in which `toolbelt.filesystem`'s ReadyUp adoption kit treated a loop over parent directories as a search for each directory's own `package.json` when the path checked at each level contained a `'package.json'` literal, as in `path.join(dir, 'node_modules', name, 'package.json')`, and so did not report the loop under `no-hand-rolled-directory-walk`.
40
- <!-- /section:release-notes -->
7
+ <!-- section:release-notes --><!-- /section:release-notes -->
41
8
 
42
9
  ## Installation
43
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@williamthorsen/toolbelt.filesystem",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Filesystem utilities",
5
5
  "keywords": [
6
6
  "config-cascade",
@@ -46,13 +46,13 @@
46
46
  "CHANGELOG.md"
47
47
  ],
48
48
  "dependencies": {
49
- "@williamthorsen/toolbelt.errors": "0.8.0"
49
+ "@williamthorsen/toolbelt.errors": "0.8.1"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@williamthorsen/toolbelt.adoption": "0.1.0",
53
- "@williamthorsen/toolbelt.testing": "0.6.0",
53
+ "@williamthorsen/toolbelt.testing": "0.6.1",
54
54
  "esbuild": "0.28.2",
55
- "readyup": "0.36.0"
55
+ "readyup": "0.37.0"
56
56
  },
57
57
  "engines": {
58
58
  "node": ">=24.0.0"