kibana/tasks/options/shell.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

35 lines
No EOL
717 B
JavaScript

module.exports = function (config) {
return {
maven_clean: {
command: 'mvn clean',
cwd: '<%= shipperDir %>',
options: {
stdout: true,
failOnError: true,
execOptions: {
cwd: '<%= shipperDir %>',
}
},
},
maven_package: {
command: 'mvn package',
options: {
stdout: true,
failOnError: true,
execOptions: {
cwd: '<%= shipperDir %>',
}
},
},
build_kibana: {
command: [ 'npm install', 'grunt build'].join("&&"),
options: {
stdout: true,
failOnError: true,
execOptions: {
cwd: '<%= buildMergeDir %>',
}
}
}
}
};