UNPKG

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

22 lines (19 loc) 438 B
export default function (grunt) { const { config } = grunt; const { sha, version } = grunt.config.get('build'); return { options: { bucket: 'download.elasticsearch.org', access: 'private', uploadConcurrency: 10 }, staging: { files: [{ expand: true, cwd: 'target', src: ['**'], dest: `kibana/staging/${version}-${sha.substr(0, 7)}/kibana/` }] } }; };