来自 gruntfile.js 的片段
sass: {
compile: {
files: [{
expand: true,
cwd: 'css/',
src: ['^[^_].scss'],
dest: '../css/',
ext: '.css'
}]
}
},
这应该根据rubular工作。
基本上我想编译'css'目录中的所有.scss文件,除非它们以下划线开头。但是,该模式与任何内容都不匹配?
有任何想法吗?