storybook/scripts/tasks/create.ts
Tom Coleman a05bccefbf Created basic task infrastructure,
as well as bootstrap, publish and create tasks
2022-08-12 13:07:07 +10:00

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,
});
},
};