mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-24 08:04:11 +08:00
* Initial commit * SVG-based graph components * Add histogram, pull data into graphs * Loading animation, timespan descriptions * Improvements to read receipt / link tracking section * Initial pass at subject line analysis * Fixes to subject-line stats * Fix theme `ui-variables` include paths * Add “Share this report” button * Add “Learn More” button * Make it more clear how to edit your shortcuts * Merge activity-list and new activity-dashboard, move in sidebar
16 lines
394 B
JavaScript
16 lines
394 B
JavaScript
module.exports = grunt => {
|
|
grunt.config.merge({
|
|
lesslint: {
|
|
src: ['internal_packages/**/*.less', 'dot-nylas/**/*.less', 'static/**/*.less'],
|
|
options: {
|
|
less: {
|
|
paths: ['static', 'static/base/'],
|
|
},
|
|
imports: ['static/base/*.less'],
|
|
},
|
|
},
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-less');
|
|
grunt.loadNpmTasks('grunt-lesslint');
|
|
};
|