我想开始使用名为 autoprefixer ( https://github.com/ai/autoprefixer ) 的 CSS 后处理器。
经过一番折腾之后,我实际上得到了这个工作,这对我来说非常神奇,因为我是一个绝对的节点、咕噜声和终端初学者。
在autoprefixer 文档中,它说可以配置要支持的浏览器,作为解释,给出了这行代码:
autoprefixer("last 1 version", "> 1%", "ie 8", "ie 7").compile(css);
但是我把这段代码放在哪里呢?我试图将它粘贴到我的 Gruntfile 底部但没有成功。该文件如下所示:
module.exports = function (grunt) {
grunt.initConfig({
autoprefixer: {
dist: {
files: {
'build/style.css': 'style.css'
}
}
},
watch: {
styles: {
files: ['style.css'],
tasks: ['autoprefixer']
}
}
});
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-contrib-watch');
};
我也尝试像这样添加它:
autoprefixer: {
options: {
browsers: ["last 10 version", "> 1%", "ie 8", "ie 7"]
},
dist: {
files: {
'build/style.css': 'style.css'
}
},
这肯定会对 CSS 输出产生影响,但我不确定它是否正确?
此外,当我autoprefixer -i
在命令行中键入以检查我的配置时,输出为-bash: autoprefixer: command not found
. 也是如此grunt-autoprefixer -i
。我怎样才能解决这个问题?我很想看到我支持的版本。
另一种变化是这样做:
inspect = autoprefixer("last 1 version").inspect();
console.log(inspect);
但是再一次,把这段代码放在哪里?