我正在使用 LESS,我想在我的 LESS 标记上运行 grunt-autoprefixer 而不编译 LESS,因为我的 LESS 是在我的 CMS 上自动编译的。
这可能吗?
这是我的 Gruntfile.js
module.exports = function(grunt) {
grunt.initConfig({
concat: {
sqs_template: {
src: ['js/one.js', 'js/two.js'],
dest: 'sqs_template/scripts/app.js',
},
},
autoprefixer: {
options: {
remove: true,
},
multiple_files: {
expand: true,
flatten: true,
src: 'css/*.less',
dest: 'sqs_template/css/',
},
},
watch: {
js: {
files: ['js/**/*.js'],
tasks: ['concat'],
},
css: {
files: ['css/**/*.less'],
tasks: ['autoprefixer'],
},
},
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-contrib-watch');
};
这是我尝试添加前缀的 LESS 示例:
//------------------------------------*\
// SOME CSS
//------------------------------------*/
// Variables
@site-width: 960px;
@color: #333333;
// Mixins
.some-font {
font-family: sans-serif;
font-size: 1.5rem;
font-weight: bold;
}
.some-container {
display: flex;
max-width: @site-width;
margin: 0 auto;
.some-container-inner {
p {
.some-font;
color: @color;
}
}
}
我希望 grunt-autoprefixer 只为我的 LESS 加上前缀,然后将其放入 sqs_template 文件夹中。现在,grunt-autoprefixer 错误,因为它似乎无法识别变量或 mixins。
这可能吗?
谢谢!