mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:41:08 +08:00
64 lines
2.1 KiB
TypeScript
64 lines
2.1 KiB
TypeScript
import fse from 'fs-extra';
|
|
import path from 'path';
|
|
import { sync as spawnSync } from 'cross-spawn';
|
|
import { logger } from '@storybook/node-logger';
|
|
import { exec } from './repro-generators/scripts';
|
|
|
|
interface LinkOptions {
|
|
target: string;
|
|
local?: boolean;
|
|
}
|
|
|
|
export const link = async ({ target, local }: LinkOptions) => {
|
|
const storybookDir = process.cwd();
|
|
try {
|
|
const packageJson = JSON.parse(fse.readFileSync('package.json', 'utf8'));
|
|
if (packageJson.name !== '@storybook/root') throw new Error();
|
|
} catch {
|
|
throw new Error('Expected to run link from the root of the storybook monorepo');
|
|
}
|
|
|
|
let reproDir = target;
|
|
let reproName = path.basename(target);
|
|
|
|
if (!local) {
|
|
const reprosDir = path.join(storybookDir, '../storybook-repros');
|
|
logger.info(`Ensuring directory ${reprosDir}`);
|
|
fse.ensureDirSync(reprosDir);
|
|
|
|
logger.info(`Cloning ${target}`);
|
|
await exec(`git clone ${target}`, { cwd: reprosDir });
|
|
// Extract a repro name from url given as input (take the last part of the path and remove the extension)
|
|
reproName = path.basename(target, path.extname(target));
|
|
reproDir = path.join(reprosDir, reproName);
|
|
}
|
|
|
|
const version = spawnSync('yarn', ['--version'], {
|
|
cwd: reproDir,
|
|
stdio: 'pipe',
|
|
}).stdout.toString();
|
|
|
|
if (!version.startsWith('2.')) {
|
|
logger.warn(`🚨 Expected yarn 2 in ${reproDir}!`);
|
|
logger.warn('');
|
|
logger.warn('Please set it up with `yarn set version berry`,');
|
|
logger.warn(`then link '${reproDir}' with the '--local' flag.`);
|
|
return;
|
|
}
|
|
|
|
logger.info(`Linking ${reproDir}`);
|
|
await exec(`yarn link --all ${storybookDir}`, { cwd: reproDir });
|
|
|
|
logger.info(`Installing ${reproName}`);
|
|
await exec(`yarn install`, { cwd: reproDir });
|
|
|
|
// ⚠️ TODO: Fix peer deps in `@storybook/preset-create-react-app`
|
|
logger.info(
|
|
`Magic stuff related to @storybook/preset-create-react-app, we need to fix peerDependencies`
|
|
);
|
|
await exec(`yarn add -D webpack-hot-middleware`, { cwd: reproDir });
|
|
|
|
logger.info(`Running ${reproName} storybook`);
|
|
await exec(`yarn run storybook`, { cwd: reproDir });
|
|
};
|