We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I find myself wanting to generate commit messages for JSON files.
This can reuse almost all of the logic from csv-diff - so for the moment I'm going to add that ability here rather than spin up a brand new tool.
csv-diff
A rename if this tool can come later!
The text was updated successfully, but these errors were encountered:
Annoyingly the --json flag is already being used for "output as JSON".
--json
Sorry, something went wrong.
I can use --format=json instead (already has --format=csv and --format=tsv).
--format=json
--format=csv
--format=tsv
Had to add special treatment for nested lists and objects - they get serialized to a JSON string and compared that way.
Example output:
% csv-diff locations.json locations-updated.json --format json --key id 3 rows changed id: rec00SICtL8KJiLim Appointment scheduling instructions: "["https://www.riteaid.com/pharmacy/covid-qualifier"]" => "["https://www.riteaid.com/pharmacy/covid-qualifier", "blah 2"]" id: rec05xrPZ4b7dCDns Location Type: "Pharmacy" => "Pharmacy 2" id: rec0IOCI2WsksvXef Name: "WALMART PHARMACY 10-3477" => "WALMART PHARMACY 10-347"
328718f
Release 1.1
a43e02a
Refs #12
No branches or pull requests
I find myself wanting to generate commit messages for JSON files.
This can reuse almost all of the logic from
csv-diff
- so for the moment I'm going to add that ability here rather than spin up a brand new tool.A rename if this tool can come later!
The text was updated successfully, but these errors were encountered: