12345678910111213141516171819 |
- const exec = require('shell-utils').exec;
- const _ = require('lodash');
-
- const dirs = [
- 'lib/src',
- 'integration',
- 'e2e',
- 'scripts',
- 'playground/src'
- ];
-
- run();
-
- function run() {
- const paths = _.chain(dirs).map((d) => `${d}/**/**/**/**/**/**/*`).join(' ').value();
- exec.execSync(`xo ${paths}`);
- exec.execSync(`jest --coverage`);
- }
|