grafana/scripts/grunt/options/exec.js

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',
};
};