mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
Tweaked build system to allow serving both marvel and kibana content without building and without symlinks
14 lines
No EOL
312 B
JavaScript
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',
|
|
]);
|
|
}; |