mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:51:28 +08:00
24 lines
533 B
TypeScript
24 lines
533 B
TypeScript
import { pathExists } from 'fs-extra';
|
|
|
|
import type { Task } from '../task';
|
|
import { options, sandbox } from '../sandbox';
|
|
import { getDefaults } from '../utils/options';
|
|
|
|
export const create: Task = {
|
|
before: ['publish'],
|
|
async ready(_, { sandboxDir }) {
|
|
return pathExists(sandboxDir);
|
|
},
|
|
async run(templateKey) {
|
|
return sandbox({
|
|
...getDefaults(options),
|
|
template: templateKey,
|
|
link: false,
|
|
publish: false,
|
|
startVerdaccio: true,
|
|
start: false,
|
|
debug: true,
|
|
});
|
|
},
|
|
};
|