diffden 0.1.0
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 +29 -0
- package/dist/cli.js +890 -0
- package/dist/index.js +883 -0
- package/package.json +34 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# DiffDen
|
|
2
|
+
|
|
3
|
+
DiffDen is a terminal UI app that watches files like `AGENT_SCRATCHPAD.md` and snapshots every change into an internal git repository.
|
|
4
|
+
|
|
5
|
+
## Local development
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
bun install
|
|
9
|
+
bun run dev
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Build
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
bun run build
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## CLI usage
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npx diffden
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Or install globally:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npm install -g diffden
|
|
28
|
+
diffden
|
|
29
|
+
```
|