mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
b912edbbef
closes #4250
30 lines
482 B
JavaScript
30 lines
482 B
JavaScript
// Lint and build CSS
|
|
module.exports = function(grunt) {
|
|
'use strict';
|
|
|
|
grunt.registerTask('css', [
|
|
'sass',
|
|
'concat:cssDark',
|
|
'concat:cssLight',
|
|
'styleguide',
|
|
'sasslint',
|
|
'postcss'
|
|
]
|
|
);
|
|
|
|
grunt.registerTask('default', [
|
|
'jscs',
|
|
'jshint',
|
|
'tslint',
|
|
'clean:gen',
|
|
'copy:node_modules',
|
|
'copy:public_to_gen',
|
|
'phantomjs',
|
|
'css',
|
|
'typescript:build'
|
|
]);
|
|
|
|
grunt.registerTask('test', ['default', 'karma:test']);
|
|
|
|
};
|