You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.
I just found out, that the autoprefixer is broken with the current configuration.
I managed to change a few lines so it works now, but I'm not sure about it.
I commented the Filter out and moved the autoprefixer before the sourcemaps.write
Here is my code:
// build styles to tmp
gulp.task('styles', ['clean'], function () {
// var cssFilter = $.filter(['*.css', '!*.map'], {restore: true});
// compile css starting from each module's scss
return gulp.src('app/*/styles/!(_)*.scss')
.pipe($.plumber())
.pipe($.sourcemaps.init())
.pipe($.sass.sync().on('error', $.sass.logError))
.pipe($.autoprefixer({ browsers: ['last 2 versions'], remove: false}))
.pipe($.sourcemaps.write('.'))
// .pipe(cssFilter)
// .pipe(cssFilter.restore)
.pipe(gulp.dest('.tmp/'));
});
The text was updated successfully, but these errors were encountered:
1.3.3
* tag '1.3.3':
1.3.3
fixes#251: autoprefixer seems broken
fixes#254: eslint adaptions
fixes#253: remove eslint errors in injecting.js
fixes#252: linting-throw not working as expected
gruppjo
added a commit
to mwaylabs/generator-m-ionic-demo
that referenced
this issue
Sep 16, 2015
I just found out, that the
autoprefixer
is broken with the current configuration.I managed to change a few lines so it works now, but I'm not sure about it.
I commented the Filter out and moved the
autoprefixer
before thesourcemaps.write
Here is my code:
The text was updated successfully, but these errors were encountered: