aboutsummaryrefslogtreecommitdiffstats
path: root/packages/monorepo-scripts/src/find_unused_dependencies.ts
blob: bfc38044c81631b0769507b61e84c6da81b5a879 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env node

import * as depcheckAsync from 'depcheck';
import * as fs from 'fs';
import lernaGetPackages = require('lerna-get-packages');
import * as _ from 'lodash';
import { exec as execAsync } from 'promisify-child-process';

import { constants } from './constants';
import { utils } from './utils';

// For some reason, `depcheck` hangs on some packages. Add them here.
const IGNORE_PACKAGES = ['@0xproject/deployer'];

(async () => {
    utils.log('*** NOTE: Not all deps listed here are actually not required. ***');
    utils.log("*** `depcheck` isn't perfect so double check before actually removing any. ***\n");
    const lernaPackages = lernaGetPackages(constants.monorepoRootPath);
    for (const lernaPackage of lernaPackages) {
        if (_.includes(IGNORE_PACKAGES, lernaPackage.package.name)) {
            continue; // skip
        }
        utils.log(`Checking ${lernaPackage.package.name} for unused deps. This might take a while...`);

        const configs = {};
        const { dependencies } = await depcheckAsync(lernaPackage.location, configs);
        if (!_.isEmpty(dependencies)) {
            _.each(dependencies, dep => {
                utils.log(dep);
            });
        }
        utils.log('\n');
    }
})().catch(err => {
    utils.log(err);
    process.exit(1);
});