flatten-tool 1.6.0 → 1.6.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.
- package/README.md +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,6 +16,15 @@ Requires [Bun](https://bun.sh) runtime (v1.1+).
|
|
|
16
16
|
npm install -g flatten-tool
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
### Run without installation
|
|
20
|
+
|
|
21
|
+
You can run flatten-tool directly without installing:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npx flatten-tool [args]
|
|
25
|
+
bunx flatten-tool [args]
|
|
26
|
+
```
|
|
27
|
+
|
|
19
28
|
### For Development
|
|
20
29
|
|
|
21
30
|
Clone the repository and install dependencies:
|
|
@@ -131,6 +140,9 @@ This project uses Bun for runtime, TypeScript for type safety, and follows the g
|
|
|
131
140
|
|
|
132
141
|
## Changelog
|
|
133
142
|
|
|
143
|
+
### v1.6.1
|
|
144
|
+
- Added instructions for running flatten-tool directly with npx and bunx.
|
|
145
|
+
|
|
134
146
|
### v1.6.0
|
|
135
147
|
- Perfect GitHub compatibility: anchors now exactly match GitHub Flavored Markdown auto-generation using github-slugger.
|
|
136
148
|
- Cleaner directory headers: removed trailing `/` for better readability.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flatten-tool",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
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",
|