mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
11 lines
374 B
TypeScript
11 lines
374 B
TypeScript
import { join } from 'path';
|
|
|
|
export const AFTER_DIR_NAME = 'after-storybook';
|
|
export const BEFORE_DIR_NAME = 'before-storybook';
|
|
|
|
export const CODE_DIRECTORY = join(__dirname, '..', '..', 'code');
|
|
export const REPROS_DIRECTORY = join(__dirname, '..', '..', 'repros');
|
|
|
|
export const LOCAL_REGISTRY_URL = 'http://localhost:6001';
|
|
export const SCRIPT_TIMEOUT = 5 * 60 * 1000;
|