mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-06 08:08:10 +08:00
16 lines
404 B
JavaScript
16 lines
404 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');
|
|
};
|