grafana/tasks/build_task.js

76 lines
1.8 KiB
JavaScript
Raw Normal View History

2013-11-15 07:07:14 +08:00
module.exports = function(grunt) {
2015-01-05 00:51:48 +08:00
"use strict";
2013-11-15 07:07:14 +08:00
// Concat and Minify the src directory into dist
grunt.registerTask('build', [
'jshint:source',
'jshint:tests',
2015-03-03 17:20:52 +08:00
'jscs',
'karma:test',
2013-11-15 07:07:14 +08:00
'clean:on_start',
2014-02-11 01:05:52 +08:00
'less:src',
'concat:cssDark',
'concat:cssLight',
2013-11-15 07:07:14 +08:00
'copy:everything_but_less_to_temp',
'htmlmin:build',
'ngtemplates',
2013-11-15 07:07:14 +08:00
'cssmin:build',
2015-02-03 20:36:04 +08:00
'ngAnnotate:build',
2013-11-15 07:07:14 +08:00
'requirejs:build',
'concat:js',
'filerev',
'remapFilerev',
'usemin',
2013-11-15 07:07:14 +08:00
'clean:temp',
'uglify:dest'
2013-11-15 07:07:14 +08:00
]);
// task to add [[.AppSubUrl]] to reved path
grunt.registerTask('remapFilerev', function(){
var root = grunt.config().destDir;
var summary = grunt.filerev.summary;
var fixed = {};
for(var key in summary){
if(summary.hasOwnProperty(key)){
var orig = key.replace(root, root+'/[[.AppSubUrl]]');
var revved = summary[key].replace(root, root+'/[[.AppSubUrl]]');
fixed[orig] = revved;
}
}
grunt.filerev.summary = fixed;
});
2015-01-01 22:28:28 +08:00
grunt.registerTask('build-post-process', function() {
grunt.config('copy.dist_to_tmp', {
expand: true,
cwd: '<%= destDir %>',
src: '**/*',
dest: '<%= tempDir %>/public/',
});
grunt.config('clean.dest_dir', ['<%= destDir %>']);
grunt.config('copy.backend_bin', {
cwd: 'bin',
expand: true,
src: ['grafana-server'],
options: { mode: true},
dest: '<%= tempDir %>/bin/'
2013-11-15 07:07:14 +08:00
});
grunt.config('copy.backend_files', {
expand: true,
2015-03-03 17:20:52 +08:00
src: ['conf/defaults.ini', 'conf/sample.ini', 'vendor/**/*', 'scripts/*'],
options: { mode: true},
dest: '<%= tempDir %>'
});
grunt.task.run('copy:dist_to_tmp');
grunt.task.run('clean:dest_dir');
grunt.task.run('copy:backend_bin');
grunt.task.run('copy:backend_files');
2013-11-15 07:07:14 +08:00
});
};