mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:01:16 +08:00
16 lines
600 B
TypeScript
16 lines
600 B
TypeScript
import { readJSON, writeJSON } from 'fs-extra';
|
|
import { join } from 'path';
|
|
|
|
export async function updatePackageScripts({ cwd, prefix }: { cwd: string; prefix: string }) {
|
|
const packageJsonPath = join(cwd, 'package.json');
|
|
const packageJson = await readJSON(packageJsonPath);
|
|
packageJson.scripts = {
|
|
...packageJson.scripts,
|
|
...(packageJson.scripts.storybook && {
|
|
storybook: `${prefix} ${packageJson.scripts.storybook}`,
|
|
'build-storybook': `${prefix} ${packageJson.scripts['build-storybook']}`,
|
|
}),
|
|
};
|
|
await writeJSON(packageJsonPath, packageJson, { spaces: 2 });
|
|
}
|