* Add better version support. Restructure code. Implement OS agnostic fallback * Support latest for cabal and stack. Add enable-stack option. * Add outputs * Update documentation. Change default for GHC to latest.
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'
|
|
};
|