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

Releases: sindresorhus/gulp-ruby-sass

1.0.3

13 Aug 15:46
Compare
Choose a tag to compare
Bump version to 1.0.3

1.0.2

13 Aug 15:46
Compare
Choose a tag to compare
Update the error catching note in the readme

1.0.1

13 Aug 15:46
Compare
Choose a tag to compare
Bump version to 1.0.1

Update dependencies.

1.0.0

13 Aug 15:46
Compare
Choose a tag to compare
Merge pull request #137 from sindresorhus/rw/1.0

Gulp source adapter, release 1.0

0.7.1

27 Jul 23:14
Compare
Choose a tag to compare

A couple bugfixes in this patch release.

  • Don't error when run with no options
  • Print the correct sass command with --verbose
  • Don't run sass when there are no files in the stream to compile
  • Better error reporting

gulp-ruby-sass made easy

25 Jul 22:36
Compare
Choose a tag to compare
  • Only add the Sass file that you want to compile to gulp.src(), like 0.5.0
  • Environment files like Gemfile and .ruby-env are read automatically
  • container option if you want to use gulp-ruby-sass in multiple streams at once
  • Emits sass, bundle, and spawn errors (compilation errors, missing Gemfile, etc.)
  • Sourcemaps write correct relative path for all files
  • Support for sass --compass option

Streamified

12 Jul 17:38
Compare
Choose a tag to compare

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.