mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
7 lines
187 B
JavaScript
7 lines
187 B
JavaScript
import { sync as spawnSync } from 'cross-spawn';
|
|
|
|
export default function hasYarn() {
|
|
const result = spawnSync('yarn', ['--version'], { silent: true });
|
|
return result.status === 0;
|
|
}
|