mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			363 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			363 B
		
	
	
	
		
			JavaScript
		
	
	
	
| module.exports = function(config, grunt) {
 | |
|   'use strict';
 | |
| 
 | |
|   return {
 | |
|     eslint: {
 | |
|       command: 'yarn lint',
 | |
|     },
 | |
|     typecheckPackages: {
 | |
|       command: 'yarn packages:typecheck',
 | |
|     },
 | |
|     typecheckRoot: {
 | |
|       command: 'yarn typecheck',
 | |
|     },
 | |
|     webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
 | |
|   };
 | |
| };
 |