M
M
massef2015-09-05 22:28:06
css
massef, 2015-09-05 22:28:06

Gulp instead of PX gives units of measurement in PC, where to dig?

Subject.
I write in SASS.
Task looks like this:

gulp.task('style', function () {
  gulp.src(path.src.style)
    .pipe(plumber())
    .pipe(sass())
    .pipe(prefixer({browsers: ['last 4 versions', 'ie 8']}))
    .pipe(minifyCSS())
    .pipe(rename({suffix: ".min"}))
    .pipe(gulp.dest(path.build.css))
    .pipe(reload({stream:true}));
});

I don’t know where to dig and who is to blame, gulp or sass.
Googling didn't work either.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander Petrov, 2015-09-05
@dzhiriki

Blame minifyCSS.
But why are you not satisfied with peaks?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question