make it compatible with new version of read-pkg-up (#6907)

make it compatible with new version of read-pkg-up
This commit is contained in:
Michael Shilman 2019-05-29 14:35:59 -07:00 committed by GitHub
commit 870baf3bd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,12 +2,12 @@ import fs from 'fs';
import path from 'path';
import readPkgUp from 'read-pkg-up';
const { pkg } = readPkgUp.sync();
const { package: { dependencies, devDependencies } = {} } = readPkgUp.sync() || {};
export default function hasDependency(name) {
return (
(pkg.devDependencies && pkg.devDependencies[name]) ||
(pkg.dependencies && pkg.dependencies[name]) ||
(devDependencies && devDependencies[name]) ||
(dependencies && dependencies[name]) ||
fs.existsSync(path.join('node_modules', name, 'package.json'))
);
}