mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
16 lines
339 B
JavaScript
16 lines
339 B
JavaScript
module.exports = {
|
|
options: {
|
|
config: '.csscomb.json'
|
|
},
|
|
dev: {
|
|
files: [
|
|
{
|
|
expand : true,
|
|
cwd : '<%= paths.css.src %>',
|
|
src : [ '**/*.scss', '!base/_fonts.scss' ],
|
|
dest : '<%= paths.css.src %>'
|
|
}
|
|
]
|
|
}
|
|
};
|