kibana-riya
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
25 lines (18 loc) • 466 B
JavaScript
;
Object.defineProperty(exports, '__esModule', {
value: true
});
exports.parse = parse;
var _path = require('path');
function parse(command, options) {
var settings = {
quiet: options.quiet || false,
silent: options.silent || false,
config: options.config || '',
pluginDir: options.pluginDir || '',
plugin: command
};
settings.pluginPath = (0, _path.resolve)(settings.pluginDir, settings.plugin);
return settings;
}
;