2019-01-29 04:34:20 +08:00
|
|
|
module.exports = function(config, grunt) {
|
2017-10-23 15:06:08 +08:00
|
|
|
'use strict';
|
2017-10-22 13:03:26 +08:00
|
|
|
|
2017-10-02 02:02:25 +08:00
|
|
|
return {
|
2020-08-11 23:52:44 +08:00
|
|
|
eslint: {
|
2020-02-08 09:40:04 +08:00
|
|
|
command: 'yarn lint',
|
2018-10-30 17:25:53 +08:00
|
|
|
},
|
2018-12-21 21:23:32 +08:00
|
|
|
typecheckPackages: {
|
2020-02-08 09:40:04 +08:00
|
|
|
command: 'yarn packages:typecheck',
|
2018-12-21 21:23:32 +08:00
|
|
|
},
|
|
|
|
typecheckRoot: {
|
2020-02-08 09:40:04 +08:00
|
|
|
command: 'yarn typecheck',
|
2018-10-30 17:25:53 +08:00
|
|
|
},
|
2020-02-08 09:40:04 +08:00
|
|
|
jest: 'yarn jest-ci',
|
|
|
|
webpack: 'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js',
|
2017-10-02 02:02:25 +08:00
|
|
|
};
|
|
|
|
};
|