Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.

Streamified

Compare
Choose a tag to compare
@robwierzbowski robwierzbowski released this 12 Jul 17:38
· 259 commits to main since this release

This version introduces breaking changes from 0.5.0.

  • gulp-ruby-sass now operates as a true gulp streaming plugin. Instead of reading the file system in order to compile each file from gulp.src() it uses only the files in the stream for compilation. You'll need to upgrade your gulp.src() globs to contain all the files Sass needs to compile your stylesheets (including Ruby environment files like the Gemfile and .ruby-version if used).
  • If you want to make some files on the filesystem available to gulp-ruby-sass without globbing them, you can still add them to a loadpath. For now, loadpaths have to be absolute.
  • Speed improvements between 50% and 300% depending on the project.
  • sourcemap support with the new sourcemapPath option. Sourcemaps will not work with files loaded through a loadpath.