kibana-123
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
15 lines (13 loc) • 364 B
JavaScript
module.exports = function (grunt) {
let { resolve } = require('path');
let rootDir = grunt.config.get('root');
return [
['launchd', '10.9'],
['upstart', '1.5'],
['systemd', 'default'],
['sysv', 'lsb-3.1']
]
.map(function ([ name, version ]) {
return { name, version, outputDir: resolve(rootDir, `build/services/${name}`) };
});
};