完全禁用链轮
Completely disabling Sprockets
我正在尝试从 Rails 6.1.3.2 和 Ruby 3.0 项目
中完全删除 Sprockets
其中一位 Whosebug question/answers 说我需要从 Gemfile 中删除 sass-rails gem。
根据 sass-rails gem Github 回购:
This gem provides official integration for Ruby on Rails projects with the Sass stylesheet language.
那么,如果我想编写 .scss 样式表而不是 .css 样式表,为什么必须删除它?
sass-rails
gem 实际上早就被贬低了。它是一个 rails(链轮)包装器,用于非常慢的古老 Ruby SASS 编译器。它在很久以前被 sassc-rails
取代,后者使用 libsass(用 C 编写),直到它也被砍掉。您不需要或不希望它出现在您的捆绑包中。
SASS 的主要实现现在是 Dart Sass. You can install it through Node.js, Homebrew, Chocolate, Scout-App etc. You integrate it with webpack through the Sass-loader 包。
它支持新的模块系统 @use
等功能,它取代了有问题的 @include
,这些功能开始出现在尖端框架中,并且与旧的 Ruby编译器。
我正在尝试从 Rails 6.1.3.2 和 Ruby 3.0 项目
中完全删除 Sprockets其中一位 Whosebug question/answers 说我需要从 Gemfile 中删除 sass-rails gem。
根据 sass-rails gem Github 回购:
This gem provides official integration for Ruby on Rails projects with the Sass stylesheet language.
那么,如果我想编写 .scss 样式表而不是 .css 样式表,为什么必须删除它?
sass-rails
gem 实际上早就被贬低了。它是一个 rails(链轮)包装器,用于非常慢的古老 Ruby SASS 编译器。它在很久以前被 sassc-rails
取代,后者使用 libsass(用 C 编写),直到它也被砍掉。您不需要或不希望它出现在您的捆绑包中。
SASS 的主要实现现在是 Dart Sass. You can install it through Node.js, Homebrew, Chocolate, Scout-App etc. You integrate it with webpack through the Sass-loader 包。
它支持新的模块系统 @use
等功能,它取代了有问题的 @include
,这些功能开始出现在尖端框架中,并且与旧的 Ruby编译器。