mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
make it compatible with new version of read-pkg-up
This commit is contained in:
parent
b6d7798ae3
commit
07492366fe
@ -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'))
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user