[pack installer] fixed file paths and lower-cased all help messages

This commit is contained in:
Jim Unger 2016-03-18 09:35:25 -05:00
parent 36ee2b4a32
commit 041cc3b297
8 changed files with 25 additions and 25 deletions

View file

@ -1,5 +1,5 @@
import _ from 'lodash';
import pkg from '../utils/packageJson';
import pkg from '../utils/package_json';
import Command from '../cli/Command';
import listCommand from './list';
import installCommand from './install';
@ -21,7 +21,7 @@ removeCommand(program);
program
.command('help <command>')
.description('Get the help for a specific command')
.description('get the help for a specific command')
.action(function (cmdName) {
var cmd = _.find(program.commands, { _name: cmdName });
if (!cmd) return program.error(`unknown command ${cmdName}`);

View file

@ -1,5 +1,5 @@
// load the babel options seperately so that they can modify the process.env
// before calling babel/register
const babelOptions = require('../optimize/babelOptions').node;
const babelOptions = require('../optimize/babel_options').node;
require('babel/register')(babelOptions);
require('./cli');

View file

@ -1,7 +1,7 @@
import fromRoot from '../../utils/fromRoot';
import fromRoot from '../../utils/from_root';
import install from './install';
import Logger from '../lib/logger';
import pkg from '../../utils/packageJson';
import pkg from '../../utils/package_json';
import { parse, parseMilliseconds } from './settings';
function processCommand(command, options) {
@ -21,24 +21,24 @@ function processCommand(command, options) {
export default function pluginInstall(program) {
program
.command('install <plugin/url>')
.option('-q, --quiet', 'Disable all process messaging except errors')
.option('-s, --silent', 'Disable all process messaging')
.option('-q, --quiet', 'disable all process messaging except errors')
.option('-s, --silent', 'disable all process messaging')
.option(
'-c, --config <path>',
'Path to the config file',
'path to the config file',
fromRoot('config/kibana.yml')
)
.option(
'-t, --timeout <duration>',
'Length of time before failing; 0 for never fail',
'length of time before failing; 0 for never fail',
parseMilliseconds
)
.option(
'-d, --plugin-dir <path>',
'The path to the directory where plugins are stored',
'path to the directory where plugins are stored',
fromRoot('installedPlugins')
)
.description('Install a plugin',
.description('install a plugin',
`Common examples:
install xpack
install file:///Path/to/my/xpack.zip

View file

@ -1,6 +1,6 @@
import _ from 'lodash';
import fromRoot from '../../utils/fromRoot';
import KbnServer from '../../server/KbnServer';
import fromRoot from '../../utils/from_root';
import KbnServer from '../../server/kbn_server';
import readYamlConfig from '../../cli/serve/read_yaml_config';
import { statSync } from 'fs';

View file

@ -1,6 +1,6 @@
import path from 'path';
import expect from 'expect.js';
import fromRoot from '../../../utils/fromRoot';
import fromRoot from '../../../utils/from_root';
import { resolve } from 'path';
import { parseMilliseconds, parse } from '../settings';

View file

@ -1,4 +1,4 @@
import fromRoot from '../../utils/fromRoot';
import fromRoot from '../../utils/from_root';
import list from './list';
import Logger from '../lib/logger';
import { parse } from './settings';
@ -22,9 +22,9 @@ export default function pluginList(program) {
.command('list')
.option(
'-d, --plugin-dir <path>',
'The path to the directory where plugins are stored',
'path to the directory where plugins are stored',
fromRoot('installedPlugins')
)
.description('List installed plugins')
.description('list installed plugins')
.action(processCommand);
};

View file

@ -1,6 +1,6 @@
import path from 'path';
import expect from 'expect.js';
import fromRoot from '../../../utils/fromRoot';
import fromRoot from '../../../utils/from_root';
import { resolve } from 'path';
import { parseMilliseconds, parse } from '../settings';

View file

@ -1,4 +1,4 @@
import fromRoot from '../../utils/fromRoot';
import fromRoot from '../../utils/from_root';
import remove from './remove';
import Logger from '../lib/logger';
import { parse } from './settings';
@ -20,20 +20,20 @@ function processCommand(command, options) {
export default function pluginRemove(program) {
program
.command('remove <plugin>')
.option('-q, --quiet', 'Disable all process messaging except errors')
.option('-s, --silent', 'Disable all process messaging')
.option('-q, --quiet', 'disable all process messaging except errors')
.option('-s, --silent', 'disable all process messaging')
.option(
'-c, --config <path>',
'Path to the config file',
'path to the config file',
fromRoot('config/kibana.yml')
)
.option(
'-d, --plugin-dir <path>',
'The path to the directory where plugins are stored',
'path to the directory where plugins are stored',
fromRoot('installedPlugins')
)
.description('Remove a plugin',
`Common examples:
.description('remove a plugin',
`common examples:
remove xpack`)
.action(processCommand);
};