diff-leven 0.1.1 → 0.1.2
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 +2 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
- Strings (character-level differences)
|
|
18
18
|
- Numbers, Booleans, and any serializable value
|
|
19
19
|
- **Rich Output Options**:
|
|
20
|
+
|
|
20
21
|
- Git-style colorized output diff format with clear additions/removals
|
|
22
|
+
|
|
21
23
|
- **Flexible Configuration**:
|
|
22
24
|
- `color`: Toggle color output (default: `true`)
|
|
23
25
|
- `keysOnly`: Compare only object structure/keys (default: `false`)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "diff-leven",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Git like diff between two strings, using the Levenshtein distance algorithm",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -27,7 +27,11 @@
|
|
|
27
27
|
"url": "git+https://github.com/kushalshit27/diff-leven.git"
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
|
-
"diff"
|
|
30
|
+
"diff",
|
|
31
|
+
"leven",
|
|
32
|
+
"compare",
|
|
33
|
+
"levenshtein",
|
|
34
|
+
"comparison"
|
|
31
35
|
],
|
|
32
36
|
"author": "kushalshit27",
|
|
33
37
|
"license": "MIT",
|