kibana/packages/kbn-plugin-generator/sao_template/template
Leanid Shutau 98fd7a6b8f
[I18n] Add include option to i18n_check for 3rd party plugins (#26963) (#27661)
* [I18n] Add include/exclude options to i18n_check tool for 3rd-party plugins

* Implement a better solution

* Update .i18nrc.json template

* Resolve comment

* Add conditional ejs expressions for i18n in plugin generator

* Hide package.json from Jest

* Complete template translation

* Resolve comments
2018-12-21 13:42:53 +03:00
..
public [I18n] Add include option to i18n_check for 3rd party plugins (#26963) (#27661) 2018-12-21 13:42:53 +03:00
server
translations [I18n] Add include option to i18n_check for 3rd party plugins (#26963) (#27661) 2018-12-21 13:42:53 +03:00
.i18nrc.json [I18n] Add include option to i18n_check for 3rd party plugins (#26963) (#27661) 2018-12-21 13:42:53 +03:00
.kibana-plugin-helpers.json
eslintrc
gitignore [kbn-plugin-generator] gitignore app.css if scss used (#25609) (#25612) 2018-11-13 15:48:43 -08:00
index.js
package_template.json [I18n] Add include option to i18n_check for 3rd party plugins (#26963) (#27661) 2018-12-21 13:42:53 +03:00
README.md [6.x] Support for multiple Elasticsearch nodes and sniffing (#21928) (#27431) 2018-12-18 19:16:04 -06: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:server

    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.