mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 15:02:13 +08:00
10 lines
333 B
JavaScript
10 lines
333 B
JavaScript
module.exports = function(config, grunt) {
|
|
'use strict';
|
|
|
|
return {
|
|
tslint: 'node ./node_modules/tslint/lib/tslintCli.js -c tslint.json --project ./tsconfig.json',
|
|
jest: 'node ./node_modules/jest-cli/bin/jest.js',
|
|
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
|
|
};
|
|
};
|