This repository was archived by the owner on Jan 23, 2021. It is now read-only.
Releases: sindresorhus/gulp-ruby-sass
Releases · sindresorhus/gulp-ruby-sass
1.0.3
Bump version to 1.0.3
1.0.2
Update the error catching note in the readme
1.0.1
Bump version to 1.0.1 Update dependencies.
1.0.0
Merge pull request #137 from sindresorhus/rw/1.0 Gulp source adapter, release 1.0
0.7.1
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
- 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
, andspawn
errors (compilation errors, missing Gemfile, etc.) - Sourcemaps write correct relative path for all files
- Support for
sass --compass
option
Streamified
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 yourgulp.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 aloadpath
.