mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
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:
commit
870baf3bd3
@ -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