mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
20 lines
438 B
JavaScript
20 lines
438 B
JavaScript
module.exports = (grunt) => {
|
|
grunt.config.merge({
|
|
lesslint: {
|
|
src: [
|
|
'internal_packages/**/*.less',
|
|
'dot-nylas/**/*.less',
|
|
'static/**/*.less',
|
|
],
|
|
options: {
|
|
less: {
|
|
paths: ['static', 'static/variables/'],
|
|
},
|
|
imports: ['static/variables/*.less'],
|
|
},
|
|
},
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-less');
|
|
grunt.loadNpmTasks('grunt-lesslint');
|
|
}
|