flatten-tool 1.2.2 → 1.2.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/README.md +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
A CLI utility to flatten directory structures.
|
|
6
6
|
|
|
7
|
+
[](https://asciinema.org/a/ThswNC1vrdlK0wdD)
|
|
8
|
+
|
|
7
9
|
## Installation
|
|
8
10
|
|
|
9
11
|
Requires [Bun](https://bun.sh) runtime (v1.1+).
|
|
@@ -111,6 +113,9 @@ This project uses Bun for runtime, TypeScript for type safety, and follows the g
|
|
|
111
113
|
|
|
112
114
|
## Changelog
|
|
113
115
|
|
|
116
|
+
### v1.2.3
|
|
117
|
+
- Added demo.gif to docs/ and linked in README.md.
|
|
118
|
+
|
|
114
119
|
### v1.2.2
|
|
115
120
|
- Added `setMaxListeners(0)` on WriteStream in Markdown merging to silence listener warnings when processing many files.
|
|
116
121
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flatten-tool",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "CLI tool to flatten directory structures: merge files into a single Markdown file (default) or copy/move to a flat directory with escaped filenames. Respects .gitignore, supports move/overwrite, and more.",
|
|
5
5
|
"module": "index.ts",
|
|
6
6
|
"type": "module",
|