Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
fix(gulp): switch to libsass
Browse files Browse the repository at this point in the history
Ruby sass is not working like this.
  • Loading branch information
stevemao committed Aug 19, 2015
1 parent ccdfa77 commit ea5a9a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions templates/common/root/_gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ var lintScripts = lazypipe()<% if (coffee) { %>
.pipe($.jshint.reporter, 'jshint-stylish');<% } %>

var styles = lazypipe()<% if (sass) { %>
.pipe($.rubySass, {
style: 'expanded',
.pipe($.sass, {
outputStyle: 'expanded',
precision: 10
})<% } %>
.pipe($.autoprefixer, 'last 1 version')
Expand Down
2 changes: 1 addition & 1 deletion templates/common/root/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"lazypipe": "^0.2.4",
"gulp-ng-annotate": "^1.0.0",
"open": "0.0.5"<% if (sass) { %>,
"gulp-ruby-sass": "^0.4.3"<% } %><% if (coffee) { %>,
"gulp-sass": "^2.0.4"<% } %><% if (coffee) { %>,
"gulp-coffeelint": "^0.5.0",
"gulp-coffee": "^2.3.1",<% } %><% } else { %>
"autoprefixer-core": "^5.2.1",
Expand Down

0 comments on commit ea5a9a8

Please sign in to comment.