confdiff 0.14.0 → 0.14.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 +5 -7
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -153,21 +153,19 @@ shows semantic output. Pick whichever fits your stack — both beat text diff.
|
|
|
153
153
|
**Run it once, no install** (requires Node.js ≥ 18):
|
|
154
154
|
|
|
155
155
|
```bash
|
|
156
|
-
npx
|
|
156
|
+
npx confdiff old.yaml new.yaml
|
|
157
157
|
```
|
|
158
158
|
|
|
159
159
|
**Install the `confdiff` command globally:**
|
|
160
160
|
|
|
161
161
|
```bash
|
|
162
|
-
npm install -g
|
|
162
|
+
npm install -g confdiff
|
|
163
163
|
confdiff old.yaml new.yaml
|
|
164
164
|
```
|
|
165
165
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
> `npm install -g confdiff` / `npx confdiff` won't work — use the `github:`
|
|
170
|
-
> spec above (or the container below). The npm listing is on the way.
|
|
166
|
+
confdiff is published on the [npm registry](https://www.npmjs.com/package/confdiff).
|
|
167
|
+
Prefer the bleeding edge? You can still install straight from source with
|
|
168
|
+
`npm install -g github:esperanza-volkov/confdiff`.
|
|
171
169
|
|
|
172
170
|
### No Node? Run the container
|
|
173
171
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "confdiff",
|
|
3
|
-
"version": "0.14.
|
|
4
|
-
"description": "Semantic, format-aware diff for config & structured
|
|
3
|
+
"version": "0.14.1",
|
|
4
|
+
"description": "Semantic, format-aware diff for config & structured-data files (JSON, JSONC, YAML, TOML, INI, .env, .properties, CSV, XML) — see what actually changed, compare across formats, and redact secrets so passwords/tokens never leak into a PR.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"confdiff": "dist/cli.js"
|
|
@@ -32,14 +32,19 @@
|
|
|
32
32
|
"config",
|
|
33
33
|
"yaml",
|
|
34
34
|
"json",
|
|
35
|
+
"jsonc",
|
|
35
36
|
"toml",
|
|
36
37
|
"ini",
|
|
37
38
|
"dotenv",
|
|
39
|
+
"properties",
|
|
38
40
|
"semantic-diff",
|
|
39
41
|
"structured-diff",
|
|
40
42
|
"cli",
|
|
41
43
|
"ci",
|
|
42
44
|
"config-drift",
|
|
45
|
+
"kubernetes",
|
|
46
|
+
"redact",
|
|
47
|
+
"secrets",
|
|
43
48
|
"xml",
|
|
44
49
|
"csv"
|
|
45
50
|
],
|