mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:21:15 +08:00
14 lines
360 B
JavaScript
14 lines
360 B
JavaScript
import fs from 'fs';
|
|
import path from 'path';
|
|
import readPkgUp from 'read-pkg-up';
|
|
|
|
const { pkg } = readPkgUp.sync();
|
|
|
|
export default function hasDependency(name) {
|
|
return (
|
|
(pkg.devDependencies && pkg.devDependencies[name]) ||
|
|
(pkg.dependencies && pkg.dependencies[name]) ||
|
|
fs.existsSync(path.join('node_modules', name, 'package.json'))
|
|
);
|
|
}
|