1
grunt-autoprefixer
表示「此項目已被棄用,以支持grunt-postcss」。所以,我想把它改成grunt-postcss。 在Gruntfile.js
爲grunt-autoprefixer
grunt-autoprefixer to grunt-postcss
autoprefixer: {
options: {
browsers: ['last 1 version']
},
dist: {
files: [{
expand: true,
cwd: '.tmp/styles/',
src: '{,*/}*.css',
dest: '.tmp/styles/'
}]
}
},
如果升級到grunt-postcss
我的當前設置。我如何在Gruntfile.js中編寫我的設置?
我在grunt-postcss中看到了README,但是我沒有看到它。似乎有些值不能映射到grunt-postcss的新設置。
不需要在postcss中展開/ cwd/src/dest的值嗎? –