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

25 lines
561 B
TypeScript

import { pathExists } from 'fs-extra';
import { resolve } from 'path';
import { exec } from '../utils/exec';
import type { Task } from '../task';
const verdaccioCacheDir = resolve(__dirname, '../../.verdaccio-cache');
export const publish: Task = {
before: ['bootstrap'],
async ready() {
return pathExists(verdaccioCacheDir);
},
async run() {
return exec(
'yarn local-registry --publish',
{},
{
startMessage: '📕 Publishing packages',
errorMessage: '❌ Failed publishing packages',
}
);
},
};