jimdo-templateflow
Version:
jimdo template grunt workflow
22 lines (20 loc) • 411 B
JavaScript
'use-strict'
module.exports = function (config) {
return {
default: {
options: {
indentedSyntax: true,
sourceMap: true,
includePaths: [ config.bowerDir ]
},
files: [{
expand: true,
cwd: config.sassDir,
src: [ '**/*.sass', '**/*.scss' ],
dest: config.cssDir,
ext: config.cssExt,
extDot: 'last'
}]
}
}
}