2019-01-28 14:34:20 -06:00
|
|
|
module.exports = function(config, grunt) {
|
2017-10-23 02:06:08 -05:00
|
|
|
'use strict';
|
2017-10-22 00:03:26 -05:00
|
|
|
|
2017-10-01 13:02:25 -05:00
|
|
|
return {
|
2020-02-07 19:40:04 -06:00
|
|
|
eslintPackages: {
|
|
|
|
command: 'yarn packages:lint',
|
2018-12-21 07:23:32 -06:00
|
|
|
},
|
2020-02-07 19:40:04 -06:00
|
|
|
eslintRoot: {
|
|
|
|
command: 'yarn lint',
|
2018-10-30 04:25:53 -05:00
|
|
|
},
|
2018-12-21 07:23:32 -06:00
|
|
|
typecheckPackages: {
|
2020-02-07 19:40:04 -06:00
|
|
|
command: 'yarn packages:typecheck',
|
2018-12-21 07:23:32 -06:00
|
|
|
},
|
|
|
|
typecheckRoot: {
|
2020-02-07 19:40:04 -06:00
|
|
|
command: 'yarn typecheck',
|
2018-10-30 04:25:53 -05:00
|
|
|
},
|
2020-02-07 19:40:04 -06:00
|
|
|
jest: 'yarn jest-ci',
|
|
|
|
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
|
2017-10-01 13:02:25 -05:00
|
|
|
};
|
|
|
|
};
|