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

Commit ea5a9a8

Browse files
committed
fix(gulp): switch to libsass
Ruby sass is not working like this.
1 parent ccdfa77 commit ea5a9a8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

templates/common/root/_gulpfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ var lintScripts = lazypipe()<% if (coffee) { %>
4848
.pipe($.jshint.reporter, 'jshint-stylish');<% } %>
4949

5050
var styles = lazypipe()<% if (sass) { %>
51-
.pipe($.rubySass, {
52-
style: 'expanded',
51+
.pipe($.sass, {
52+
outputStyle: 'expanded',
5353
precision: 10
5454
})<% } %>
5555
.pipe($.autoprefixer, 'last 1 version')

templates/common/root/_package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"lazypipe": "^0.2.4",
2626
"gulp-ng-annotate": "^1.0.0",
2727
"open": "0.0.5"<% if (sass) { %>,
28-
"gulp-ruby-sass": "^0.4.3"<% } %><% if (coffee) { %>,
28+
"gulp-sass": "^2.0.4"<% } %><% if (coffee) { %>,
2929
"gulp-coffeelint": "^0.5.0",
3030
"gulp-coffee": "^2.3.1",<% } %><% } else { %>
3131
"autoprefixer-core": "^5.2.1",

0 commit comments

Comments
 (0)