#!/usr/bin/env node import * as depcheckAsync from 'depcheck'; import * as _ from 'lodash'; import { constants } from './constants'; import { utils } from './utils/utils'; // For some reason, `depcheck` hangs on some packages. Add them here. const IGNORE_PACKAGES = ['@0x/sol-compiler']; (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 packages = utils.getPackages(constants.monorepoRootPath); for (const pkg of packages) { if (_.includes(IGNORE_PACKAGES, pkg.packageJson.name)) { continue; // skip } utils.log(`Checking ${pkg.packageJson.name} for unused deps. This might take a while...`); const configs = {}; const { dependencies } = await depcheckAsync(pkg.location, configs); if (!_.isEmpty(dependencies)) { _.each(dependencies, dep => { utils.log(dep); }); } utils.log('\n'); } })().catch(err => { utils.log(err); process.exit(1); }); lantw44/cgit/cgit.cgi/freebsd-ports-gnome/'>freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/devel/p5-pip
Commit message (Expand)AuthorAgeFilesLines
* - add stage supportaz2014-01-292-5/+3
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* - convert to the new perl5 frameworkaz2013-09-101-1/+2
* - Update to 1.19 [1]culot2013-01-182-5/+8
* - Reassign to the heap at maintainer's requesttabthorpe2012-10-161-6/+2
* - Add TEST_DEPENDS to enable testingswills2012-03-011-0/+3
* At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450eadler2012-01-221-1/+1
* - Replace ../../authors in MASTER_SITE_SUBDIR with CPAN:CPANID macro.az2011-09-081-1/+1
* -remove MD5ohauer2011-07-031-1/+0
* - Update to 1.18pgollucci2010-08-283-7/+12
* - Update to 1.16pgollucci2009-12-262-5/+5
* The pip ("Perl Installation Program") console application is usedpav2009-09-25