Gulp plugin for compiling SCSS (SASS) using the standard `scss` command-line tool or via `bundle exec scss`. Current stable version is 1.4.0. The plugin is explicitly noted as obsolete by the author because libsass (used by gulp-sass) now matches Ruby Sass features. It passes options via dargs, supports temporary file caching, and allows globbing (unlike gulp-ruby-sass). Not recommended for new projects; use gulp-sass (node-sass) or gulp-dart-sass instead.
npm install gulp-scssNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic gulp task that compiles SCSS files using gulp-scss with bundle exec and custom temp path.
Replace gulp-scss with gulp-sass and adjust your configuration.
Ensure options are in format suitable for CLI flags; test command generation.
If not available, install Ruby Sass or use bundle exec with a Gemfile.
Consider migrating to gulp-sass or another maintained plugin.
Install Ruby Sass: gem install sass, or use bundleExec: true and ensure bundle is available.
Use import scss from 'gulp-scss' (default import) instead of destructuring.
Flatten options into string-typed CLI flags, or use gulp-sass which supports object options.