forked from coderaiser/putout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.madrun.mjs
23 lines (21 loc) · 852 Bytes
/
.madrun.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import {run} from 'madrun';
export default {
'wisdom': () => run(['lint', 'coverage']),
'test': () => `tape 'test/*.js' 'lib/**/*.spec.js'`,
'watch:test': async () => `nodemon -w lib -x ${await run('test')}`,
'lint': () => `putout .`,
'fresh:lint': () => run('lint', '--fresh'),
'lint:fresh': () => run('lint', '--fresh'),
'fix:lint': () => run('lint', '--fix'),
'coverage': async () => `c8 ${await run('test')}`,
'report': () => 'c8 report --reporter=lcov',
'create:declare': () => 'node scripts/create-declare.mjs',
'create:declare:types': () => createDeclare({
name: '@putout/babel',
path: 'types',
outputFile: './lib/declare/types.json',
}),
};
function createDeclare({name, path, outputFile}) {
return `node scripts/create-declare.mjs ${name} ${path} ${outputFile}`;
}