|
|
|
|
|
by QuantumNomad_
312 days ago
|
|
If I understand correctly: - OP project manages contents of multiple files as a single JSON with the intention of tracking that one single file in git, and splits it into the original files when you apply it - Your tool sounds like it can do the same thing, split one JSON file into multiple files, but it’s geared for use the other way around, to track in git as separate files the pieces that make up the total JSON as a. Both tools can probably be used for the same, it’s up to the user to decide if the combined file is the result and the split files are for git or the other way around. And fwiw, I agree with you that keeping the split up thing in git is more helpful for reading diffs than a single massive JSON file. I have some scripts in one of my projects too, that takes fragments split across multiple files which are separately tracked, and combine those into single JSON files when I use them. |
|
Edit: I have updated the documentation to mention this explicitly, thanks!