grafana/scripts/grunt/options/exec.js

21 lines
459 B
JavaScript
Raw Normal View History

module.exports = function(config, grunt) {
2017-10-23 02:06:08 -05:00
'use strict';
return {
eslintPackages: {
command: 'yarn packages:lint',
},
eslintRoot: {
command: 'yarn lint',
},
typecheckPackages: {
command: 'yarn packages:typecheck',
},
typecheckRoot: {
command: 'yarn typecheck',
},
jest: 'yarn jest-ci',
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
};
};