UNPKG

@spalger/kibana

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

67 lines (58 loc) 1.91 kB
require('babel/register'); module.exports = function (grunt) { // set the config once before calling load-grunt-config // and once during so that we have access to it via // grunt.config.get() within the config files var config = { pkg: grunt.file.readJSON('package.json'), root: __dirname, src: __dirname + '/src', build: __dirname + '/build', // temporary build directory plugins: __dirname + '/src/plugins', server: __dirname + '/src/server', target: __dirname + '/target', // location of the compressed build targets testUtilsDir: __dirname + '/src/testUtils', configFile: __dirname + '/src/config/kibana.yml', karmaBrowser: (function () { switch (require('os').platform()) { case 'win32': return 'IE'; case 'darwin': return 'Chrome'; default: return 'Firefox'; } }()), nodeVersion: '0.10.35', platforms: ['darwin-x64', 'linux-x64', 'linux-x86', 'windows'], services: [ ['launchd', '10.9'], ['upstart', '1.5'], ['systemd', 'default'], ['sysv', 'lsb-3.1'] ], devPlugins: 'devMode', meta: { banner: '/*! <%= package.name %> - v<%= package.version %> - ' + '<%= grunt.template.today("yyyy-mm-dd") %>\n' + '<%= package.homepage ? " * " + package.homepage + "\\n" : "" %>' + ' * Copyright (c) <%= grunt.template.today("yyyy") %> <%= package.author.company %>;' + ' Licensed <%= package.license %> */\n' }, lintThese: [ 'Gruntfile.js', '<%= root %>/tasks/**/*.js', '<%= src %>/**/*.js', '!<%= src %>/fixtures/**/*.js' ] }; grunt.config.merge(config); // load plugins require('load-grunt-config')(grunt, { configPath: __dirname + '/tasks/config', init: true, config: config }); // load task definitions grunt.task.loadTasks('tasks'); };