如何监视 HAML 文件的更改并保存它们
我想在每次保存特定文件时运行 HAML 命令。我知道这可以通过指南针来完成,但仅限于 sass 而不是 HAML,有人这样做过或指导我如何做。
I want to run a HAML command every time I save a particular file. I know this can be done by compass but only for sass not HAML has anyone done this or guide me how to.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 MacOS 上(我想 Linux 上也是如此),您可以从终端使用“watch”命令。
首先,您需要使用“homebrew”来安装它,
然后您可以像这样运行它:
On MacOS (and I assume, on linux too) you can use the 'watch' command from the terminal.
First, you need to install it using, for example "homebrew"
and then you can run it like:
或者如果有人像我一样偶然来到这里。有一个较新的工具:LiveReload 可以自动执行所有这些操作以及更多操作。
Or if anyone stumbled in here like I did. There is a newer tool: LiveReload that does all these automatically and more.
当然,请查看 StaticMatic、nanoc 或 Webby(在 gitHub 上搜索这些)。您也可以让它们与 Compass 一起使用。
Sure, check out StaticMatic, nanoc, or Webby (search for these on gitHub). You can make them work with Compass too.