Hi There
I'm working on a project which I'm using Gulp . All was Okay before i used Autoprefixer Plugin and Watch Command . Now when I run gulp at the terminal. My windows 10 is off without any Error message .
gulpfile.js code
var gulp =…
Possibly the dumbest question I've asked but I'm finding the documentation and the limited examples quite hazy.
I'd like to support as many browsers as possible, including IE7+ e.g.
.pipe(autoprefixer({
browsers: ['last 5 versions', 'ie >=…
i am trying to get my gulp to work correct with Autoprefixer, sass and browser-sync but i have some issues.
I set up the Gulpfile.js like this:
var gulp = require('gulp'),
plumber = require('gulp-plumber'),
rename = require('gulp-rename');
var…
my folder structure consists of a directory called "production" which houses style.css, the file that I'm writing in... I have another directory called "css" which is the destination for my autoprefixed style.css file. The watch task I have set up…
I just copied the sample at https://www.npmjs.com/package/gulp-autoprefixer after I installed gulp and gulp-autoprefixer:
var gulp = require('gulp');
var autoprefixer = require('gulp-autoprefixer');
gulp.task('default', function () {
return…
I am switching from gulp-ruby-sass to gulp-sass. Gulp ruby sass was working without errors, but to make life easy on our Windows devs I am trying to remove the dependency on Ruby.
I installed the packages at set up my gulp file like so:
var…
Here is my gulpfile, I don't know whats wrong. Why is autoprefixer doing nothing? I suppose it's something wrong with dest.
gulp.task('sass', function () {
gulp.src('**/sass/*.scss')
.pipe(plumber({errorHandler: onError}))
…
I have the following in my gulpfile, and CSS gets compiled, but prefixes are not added or removed. What am I doing wrong?
// The task
// --------
gulp.task('autoprefix', function () {
var prefixr = autoprefixer({
browsers: ['last 2 versions',…
I am unable to get the autoprefixer working with gulp sass. Here is my gulpfile.js:
'use strict';
var gulp = require('gulp');
var sass = require('gulp-sass');
var sourcemaps = require('gulp-sourcemaps');
var autoprefixer =…