7 lines
211 B
JavaScript
7 lines
211 B
JavaScript
|
|
module.exports = {
|
||
|
|
'!(*test).{js,ts}': 'eslint --cache --fix',
|
||
|
|
'!(*test).ts': () => ['ncc build', 'git add dist'],
|
||
|
|
'src/**/*.ts': () => 'tsc -p tsconfig.json',
|
||
|
|
'*.{js,ts,json,md}': 'prettier --write'
|
||
|
|
};
|