removes codedov refs

This commit is contained in:
bergquist
2018-09-18 11:44:31 +02:00
parent 1be26ad362
commit 63ed02e626
4 changed files with 1 additions and 19 deletions

View File

@@ -1,14 +1,9 @@
module.exports = function(config, grunt) {
'use strict';
var coverage = '';
if (config.coverage) {
coverage = '--coverage --maxWorkers 2';
}
return {
tslint: 'node ./node_modules/tslint/lib/tslintCli.js -c tslint.json --project ./tsconfig.json',
jest: 'node ./node_modules/jest-cli/bin/jest.js ' + coverage,
jest: 'node ./node_modules/jest-cli/bin/jest.js',
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
};
};