在 Rails 中,为什么 .sass 文件会神奇地重新编译为 .css 文件?
我没有调用任何 sass 命令来“观察”.sass 文件更改并将它们重新编译为 .css(并将所有 .css 连接成一个巨大的 .css 文件) 但不知何故,当我修改 Rails 项目中的任何 .sass 文件并在浏览器上重新加载页面时,巨大的 .css 文件已经具有更新的内容。 做到这一点的机制是什么?
I didn't invoke any sass command to "watch" the .sass file changes and recompile them into .css (and concatenate all .css into a giant .css file)
But somehow, when I modify any .sass file in the Rails project, and reload the page on a browser, the giant .css file already has the updated content.
What is the mechanism that does this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的 Gemfile 中有
gem 'haml'
,那就是这样。gem 的 init.rb 文件运行,调用
Haml.init_rails
,您可以关注该线程那里很容易。If you have
gem 'haml'
in your Gemfile, it's that.The gem's init.rb file gets run which calls
Haml.init_rails
, and you can follow the thread from there pretty easily.以防万一您好奇 SASS 如何确定文件是否应该更新(我是)。它检查编译后的CSS文件的mtime(如果编译后的文件不存在,它显然会创建它)。下面是处理检查已编译 CSS 陈旧性的类:
https ://github.com/nex3/sass/blob/master/lib/sass/plugin/staleness_checker.rb
Just in case you're curious how SASS determines if a file should be updated (I was). It checks the mtime of the compiled CSS files (if the compiled file doesn't exist, it obviously creates it). Here's the class that handles checking the staleness of compiled CSS:
https://github.com/nex3/sass/blob/master/lib/sass/plugin/staleness_checker.rb