mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 06:52:37 +08:00
6 lines
211 B
JavaScript
6 lines
211 B
JavaScript
// Lint and build CSS
|
|
module.exports = function(grunt) {
|
|
grunt.registerTask('default', ['jshint:source', 'jshint:tests', 'less:src', 'concat:css']);
|
|
grunt.registerTask('test', ['default', 'karma:test']);
|
|
};
|