kibana/tasks/build_task.js
Boaz Leskes 31ba5de2df Moved plugin to a subfolder
Tweaked build system to allow serving both marvel and kibana content without building and without symlinks
2013-11-18 22:14:38 +01:00

14 lines
No EOL
312 B
JavaScript

module.exports = function (grunt) {
grunt.registerTask('build', [
'clean:build',
'shell:maven_clean',
'shell:maven_package',
'copy:merge_kibana',
'copy:merge_marvel',
'replace:dist_marvel_config',
'symlink:build_npm',
'shell:build_kibana',
'copy:plugin_to_marvel',
]);
};