grafana/scripts/grunt/options/exec.js

10 lines
348 B
JavaScript
Raw Normal View History

module.exports = function(config, grunt) {
2017-10-23 15:06:08 +08:00
'use strict';
return {
tslint: 'node ./node_modules/tslint/lib/tslintCli.js -c tslint.json --project ./tsconfig.json',
2018-09-18 18:07:53 +08:00
jest: 'node ./node_modules/jest-cli/bin/jest.js --maxWorkers 2',
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
};
};