exec.js 379 B

12345678910
  1. module.exports = function (config, grunt) {
  2. 'use strict';
  3. return {
  4. tslint: 'node ./node_modules/tslint/lib/tslintCli.js -c tslint.json --project ./tsconfig.json',
  5. tsc: 'yarn tsc --noEmit',
  6. jest: 'node ./node_modules/jest-cli/bin/jest.js --maxWorkers 2',
  7. webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
  8. };
  9. };