Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在努力弄清楚如何使用 Prepros 在保存时自动缩小我的 json。Prepros 将对我所有的 JS 和 CSS 做同样的事情,但它似乎没有内置的处理 JSON 的功能。
我可以通过在我的 Mac 上安装JQ来解决这个问题。它将使用它的命令行工具缩小我的 JSON。然后我能够使用 Prepros 自定义工具功能来实现它。
添加命令jq -c . < {{input}} > {{output}},您将能够按预期将 JSON 缩小。
jq -c . < {{input}} > {{output}}