build: split circle test shell scripts

This commit is contained in:
Torkel Ödegaard
2017-10-23 09:06:08 +02:00
parent 48f384dcf1
commit 1fd2270a93
5 changed files with 37 additions and 24 deletions

View File

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