mirror of
				https://github.com/grafana/grafana.git
				synced 2025-02-25 18:55:37 -06:00 
			
		
		
		
	* Fix lint error in types.ts * Bump eslint and its deps to latest * Add eslintignore and remove not needed eslintrcs * Change webpack configs eslint config * Update package.jsons and removed unused eslintrc files * Chore yarn lint --fix 💅 * Add devenv to eslintignore * Remove eslint disable comments for rules that are not used * Remaining eslint fixes 💅 * Bump grafana/eslint-config 💥 * Modify package.json No need for duplicate checks. * Modify eslintignore to ignore data and dist folders * Revert removing .eslintrc to make sure not to use certain packages * Modify package.json to remove not needed command * Use gitignore for ignoring paths
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'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',
 | 
						|
    platform: process.platform.replace('win32', 'windows'),
 | 
						|
    enterprise: false,
 | 
						|
    libc: null,
 | 
						|
  };
 | 
						|
 | 
						|
  if (grunt.option('platform')) {
 | 
						|
    config.platform = grunt.option('platform');
 | 
						|
  }
 | 
						|
 | 
						|
  if (grunt.option('enterprise')) {
 | 
						|
    config.enterprise = true;
 | 
						|
  }
 | 
						|
 | 
						|
  if (grunt.option('arch')) {
 | 
						|
    config.arch = grunt.option('arch');
 | 
						|
  } else {
 | 
						|
    config.arch = os.arch();
 | 
						|
 | 
						|
    if (process.platform.match(/^win/)) {
 | 
						|
      config.arch = process.env.hasOwnProperty('ProgramFiles(x86)') ? 'x64' : 'x86';
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  if (grunt.option('libc')) {
 | 
						|
    config.libc = grunt.option('libc');
 | 
						|
  }
 | 
						|
 | 
						|
  config.pkg.version = grunt.option('pkgVer') || config.pkg.version;
 | 
						|
 | 
						|
  console.log('Version', config.pkg.version);
 | 
						|
 | 
						|
  // load plugins
 | 
						|
  require('load-grunt-tasks')(grunt);
 | 
						|
 | 
						|
  // load task definitions
 | 
						|
  grunt.loadTasks('./scripts/grunt');
 | 
						|
 | 
						|
  // 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, './scripts/grunt/options/');
 | 
						|
  // pass the config to grunt
 | 
						|
  grunt.initConfig(config);
 | 
						|
};
 |