Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure quotes in json are escaped
I'm seeing issues when I run `eas build:list --json` because git commit messages are included in the result but git commit messages sometimes contain quotes. These aren't escaped and so I am seeing invalid json in the output that looks like this: ``` { \\... "gitCommitMessage": "Changed some "stuff"" } ``` I've changed this so that string values (only) are escaped using `JSON.stringify`.
- Loading branch information