Files
grafana/scripts/grunt/options/exec.js

10 lines
349 B
JavaScript
Raw Normal View History

module.exports = function(config, grunt) {
2017-10-23 09:06:08 +02:00
'use strict';
return {
2017-10-23 09:06:08 +02:00
tslint: 'node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json',
2018-04-16 09:57:41 +02: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',
};
};