mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
| /* jshint node:true */
 | |
| 'use strict';
 | |
| module.exports = function (grunt) {
 | |
|   var os = require('os');
 | |
|   var config = {
 | |
|     pkg: grunt.file.readJSON('package.json'),
 | |
|     baseDir: '.',
 | |
|     srcDir: 'public',
 | |
|     genDir: 'public_gen',
 | |
|     destDir: 'dist',
 | |
|     tempDir: 'tmp',
 | |
|     arch: os.arch(),
 | |
|     platform: process.platform.replace('win32', 'windows'),
 | |
|   };
 | |
| 
 | |
|   if (process.platform.match(/^win/)) {
 | |
|     config.arch = process.env.hasOwnProperty('ProgramFiles(x86)') ? 'x64' : 'x86';
 | |
|   }
 | |
| 
 | |
|   config.pkg.version = grunt.option('pkgVer') || config.pkg.version;
 | |
| 
 | |
|   // load plugins
 | |
|   require('load-grunt-tasks')(grunt);
 | |
| 
 | |
|   // load task definitions
 | |
|   grunt.loadTasks('tasks');
 | |
| 
 | |
|   // Utility function to load plugin settings into config
 | |
|   function loadConfig(config,path) {
 | |
|     require('glob').sync('*', {cwd: path}).forEach(function(option) {
 | |
|       var key = option.replace(/\.js$/,'');
 | |
|       // If key already exists, extend it. It is your responsibility to avoid naming collisions
 | |
|       config[key] = config[key] || {};
 | |
|       grunt.util._.extend(config[key], require(path + option)(config,grunt));
 | |
|     });
 | |
|     // technically not required
 | |
|     return config;
 | |
|   }
 | |
| 
 | |
|   // Merge that object with what with whatever we have here
 | |
|   loadConfig(config,'./tasks/options/');
 | |
|   // pass the config to grunt
 | |
|   grunt.initConfig(config);
 | |
| };
 |