在 Rails 中,为什么 .sass 文件会神奇地重新编译为 .css 文件?

发布于 2024-09-29 05:55:16 字数 161 浏览 3 评论 0原文

我没有调用任何 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ぇ气 2024-10-06 05:55:16

如果您的 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.

┾廆蒐ゝ 2024-10-06 05:55:16

以防万一您好奇 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文