make it compatible with new version of read-pkg-up

This commit is contained in:
Michał 2019-05-29 19:58:36 +02:00
parent b6d7798ae3
commit 07492366fe

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'))
);
}