NOTE: This fork is NO LONGER MAINTAINED since it was used for the ability to add a custom execution path, which is no longer needed in newer versions of dartsass-rails.
Sass is a stylesheet language that’s compiled to CSS. It allows you to use variables, nested rules, mixins, functions, and more, all with a fully CSS-compatible syntax.
This gem wraps the standalone executable version of the Dart version of Sass. These executables are platform specific, but included in this gem are the ones for macOS (Intel, Apple Silicon), Linux (x86-64, AArch64), and Windows (x86-64).
The installer will create your default Sass input file in app/assets/stylesheets/application.scss
. This is where you should import all the style files to be compiled using the @use rule. When you run rails dartsass:build
, this input file will be used to generate the output in app/assets/builds/application.css
. That's the output CSS that you'll include in your app. The load path for Sass is automatically configured to be app/assets/stylesheets
.
If you need to configure the build process – beyond configuring the build files – you can run bundle exec dartsass
to access the platform-specific executable, and give it your own build options.
When you're developing your application, you want to run Dart Sass in watch mode, so changes are automatically reflected in the generated CSS output. You can do this either by running rails dartsass:watch
as a separate process, or by running ./bin/dev
which uses foreman to start both the Dart Sass watch process and the rails server in development mode.
- Run
./bin/bundle add dartsass-rails
- Run
./bin/rails dartsass:install
The dartsass:build
is automatically attached to assets:precompile
, so before the asset pipeline digests the files, the Dart Sass output will be generated.
By default, only app/assets/stylesheets/application.scss
will be built. If you'd like to change the path of this stylesheet, add additional entry points, or customize the name of the built file, use the Rails.application.config.dartsass.builds
configuration hash.
# config/initializers/dartsass.rb
Rails.application.config.dartsass.builds = {
"app/index.sass" => "app.css",
"site.scss" => "site.css"
}
The hash key is the relative path to a Sass file in app/assets/stylesheets/
and the hash value will be the name of the file output to app/assets/builds/
.
By default, sass is invoked with --style=compressed --no-source-map
. You can adjust these options by overwriting Rails.application.config.dartsass.build_options
.
# config/initializers/dartsass.rb
Rails.application.config.dartsass.build_options << " --quiet-deps"
By default, the sass command is determined by the exe/dartsass
script. You can change the exec path for sass by
overwriting Rails.application.config.dartsass.exec_path
.
dartsass:build
includes application assets paths as Sass load paths. Assuming the gem has made assets visible to the Rails application, no additional configuration is required to use them.
If you're migrating from sass-rails (applies to sassc-rails as well) and want to switch to dartsass-rails, follow these instructions below:
-
Remove the sass-rails gem from the Gemfile by running
./bin/bundle remove sass-rails
-
Install dartsass-rails by following the Installation instructions above
-
Remove any references to Sass files from the Sprockets manifest file:
app/assets/config/manifest.js
-
In your continuous integration pipeline, before running any tests that interact with the browser, make sure to build the Sass files by running:
bundle exec rails dartsass:build
Some common problems experienced by users:
The reason for the above error is that Sprockets is trying to build Sass files but the sass-rails or sassc-rails gems are not installed. This is expected, since Dart Sass is used instead to build Sass files, and the solution is to make sure that Sprockets is not building any Sass files.
There are three reasons why this error can occur:
If any Sass files are referenced in the Sprockets manifest file
(app/assets/config/manifest.js
) Sprockets will try to build the Sass files and
fail.
Remove any references to Sass files from the Sprockets manifest file. These are
now handled by Dart Sass. If you have more Sass files than application.scss
,
make sure these are compiled by Dart Sass
(see Configuring builds above).
If you receive this error when running the Rails server locally and have already removed any references to Sass files from the Sprockets manifest file, the Dart Sass process is most likely not running.
Make sure the Dart Sass process is running by starting the Rails sever by
running: ./bin/dev
.
If you receive this error when running tests that interact with the browser in a continuous integration pipeline and have removed any references to Sass files from the Sprockets manifest file, the Sass files have most likely not been built.
Add a step to the continuous integration pipeline to build the Sass files with
the following command: bundle exec rails dartsass:build
.
Dart Sass 1.49.0
Dart Sass for Rails is released under the MIT License. Sass is released under the MIT License.