npm install postcss-cli -g
npm install postcss autoprefixer
script
module.exports = {
plugins: [
]
}
postcss path/to/style.css -o path/to/output.css
groovy
dependencies {
implementation 'com.moowork.gradle:gradle-node-plugin:1.3.1'
}
groovy
apply plugin: 'com.moowork.node'
node {
}
task postcss(type: NodeTask) {
}
groovy
apply from: 'postcss.gradle'
gradle postcss