mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:51:05 +08:00
For some reason why see https://blog.neufund.org/why-we-have-banned-default-exports-and-you-should-do-the-same-d51fdc2cf2ad
16 lines
358 B
JavaScript
16 lines
358 B
JavaScript
import { spawn } from 'cross-spawn';
|
|
import { hasYarn } from './has_yarn';
|
|
|
|
const packageManager = hasYarn() ? 'yarn' : 'npm';
|
|
|
|
export function npmInit() {
|
|
const results = spawn.sync(packageManager, ['init', '-y'], {
|
|
cwd: process.cwd(),
|
|
env: process.env,
|
|
stdio: 'pipe',
|
|
encoding: 'utf-8',
|
|
silent: true,
|
|
});
|
|
return results.stdout;
|
|
}
|