This repository has been archived by the owner on Sep 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
PostCSS does not read and not print file, from folder "src" to "dest" #94
Comments
@immagimario i fix my problem:
|
Hi
I finally used this syntax:
Thank you very much for helping ;-) |
I had a similar problem and this syntax worked for me, so might work for you? module.exports = {
postcss: {
options: {
map: true,
processors: [
require ('autoprefixer') ({browsers: ['last 2 versions']}),
]
},
cwd: '<% = Project.stylesheets%>/dest/',
src: '*.css',
dest: '<% = Project.stylesheets%>/src/',
expand: true,
ext: '.css'
}
}; |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I installed grunt-postcss and autoprefixer plug-in, but when I try to configure PostCSS with metod of the plug-in "load-grunt-config", Autoprefixer and other plug-in, do nothing and do not have allert or error.
This is output from console:
When I configure grunt in the standard way, PostCSS it works correctly.
This is my postcss.js file, put inside of grunt folder:
Instead, with this command grunt postcss --debug, the consoole display this:
Or this command line $grunt postcss --verbose, the consoole display this:
You have no idea how to solve it
Thanks for your help
Mario
The text was updated successfully, but these errors were encountered: