kibana/packages/kbn-plugin-generator/sao_template/template
2019-12-13 23:17:11 -07:00
..
public Migrate necessary ui/autoload functionality to NP (#48689) 2019-10-28 12:58:29 -05:00
server [@kbn/expect] "fork" expect.js into repo (#33761) 2019-03-25 09:56:48 -07:00
translations [I18n] Add include option to i18n_check for 3rd party plugins (#26963) 2018-12-21 12:55:45 +03:00
.i18nrc.json [Plugin Generator] Enhance Integration Test (#45401) 2019-09-11 15:10:47 -06:00
.kibana-plugin-helpers.json Adds SCSS support for plugins (#19643) 2018-06-21 16:25:29 -07:00
eslintrc.js [Plugin Generator] Add integration test (#43219) 2019-09-06 13:10:47 -06:00
gitignore [kbn-plugin-generator] gitignore app.css if scss used (#25609) 2018-11-13 13:01:32 -08:00
index.js [eslint] use prettier for all the things 2019-12-13 23:17:11 -07:00
package_template.json Migrate from tslint (#33826) 2019-04-05 17:45:23 +01:00
README.md Only report the mocha tests once, as "Mocha tests" (#39544) 2019-06-25 07:45:58 -07:00

<%= name %>

<%- (description || '').split('\n').map(function (line) { return '> ' + line }).join('\n') %>


development

See the kibana contributing guide for instructions setting up your development environment. Once you have completed that, use the following yarn scripts.

  • yarn kbn bootstrap

    Install dependencies and crosslink Kibana and all projects/plugins.

    IMPORTANT: Use this script instead of yarn to install dependencies when switching branches, and re-run it whenever your dependencies change.

  • yarn start

    Start kibana and have it include this plugin. You can pass any arguments that you would normally send to bin/kibana

    yarn start --elasticsearch.hosts http://localhost:9220
    
  • yarn build

    Build a distributable archive of your plugin.

  • yarn test:browser

    Run the browser tests in a real web browser.

  • yarn test:mocha

    Run the server tests using mocha.

For more information about any of these commands run yarn ${task} --help. For a full list of tasks checkout the package.json file, or run yarn run.