We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, my stream is working very well, but when I import .css files into my .scss files it seems that the sourcemaps are not updated.
This makes the sourcemaps functionality unusable.
My stream:
gulp.task('styles', function() { gulp.src(paths.styles) .pipe(sourcemaps.init()) .pipe(sass({ errLogToConsole: true })) .pipe(please({ "autoprefixer": { "browsers": ["last 2 versions"] }, "mqpacker": true, "minifier": false })) .pipe(sourcemaps.write('.')) .pipe(gulp.dest(paths.dist + '/css')) });
Thanks!
The text was updated successfully, but these errors were encountered:
Hey :)
Its most likely issue with pleease itself. Can you please try it with raw library if it works ?
Sorry, something went wrong.
BTW mqpacker is very dangerous :)
Can you share your CSS files ? Or samples ?
No branches or pull requests
Hi, my stream is working very well, but when I import .css files into my .scss files it seems that the sourcemaps are not updated.
This makes the sourcemaps functionality unusable.
My stream:
Thanks!
The text was updated successfully, but these errors were encountered: