Skip to content

Commit

Permalink
Fixes #82 - use LibSass instead of Ruby Sass
Browse files Browse the repository at this point in the history
  • Loading branch information
addyosmani committed Oct 17, 2014
1 parent 12dcb87 commit 5b860b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,7 @@ gulp.task('styles', function () {
'app/styles/components/components.scss'
])
.pipe($.changed('styles', {extension: '.scss'}))
.pipe($.rubySass({
style: 'expanded',
precision: 10

This comment has been minimized.

Copy link
@kevva

kevva Oct 17, 2014

The precision option exists in node-sass (gulp-sass passes on options to node-sass), so might as well keep this.

}))
.pipe($.sass())
.on('error', console.error.bind(console))
.pipe($.autoprefixer({browsers: AUTOPREFIXER_BROWSERS}))
.pipe(gulp.dest('.tmp/styles'))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"gulp-load-plugins": "^0.7.0",
"gulp-minify-html": "^0.1.5",
"gulp-replace": "^0.4.0",
"gulp-ruby-sass": "^0.7.1",
"gulp-sass": "^1.2.0",
"gulp-size": "^1.0.0",
"gulp-uglify": "^1.0.1",
"gulp-uncss": "^0.5.0",
Expand Down

0 comments on commit 5b860b2

Please sign in to comment.