build_sass {rhino}R Documentation

Build Sass

Description

Builds the app/styles/main.scss file into app/static/css/app.min.css.

Usage

build_sass(watch = FALSE)

Arguments

watch

Keep the process running and rebuilding Sass whenever source files change. Only supported for sass: node configuration in rhino.yml.

Details

The build method can be configured using the sass option in rhino.yml:

  1. node: Use Dart Sass (requires Node.js to be available on the system).

  2. r: Use the {sass} R package.

It is recommended to use Dart Sass which is the primary, actively developed implementation of Sass. On systems without Node.js you can use the {sass} R package as a fallback. It is not advised however, as it uses the deprecated LibSass implementation.

Value

None. This function is called for side effects.

Examples

if (interactive()) {
  # Build the `app/styles/main.scss` file into `app/static/css/app.min.css`.
  build_sass()
}

[Package rhino version 1.7.0 Index]