storybook/scripts/tasks/publish-repo.ts
2022-10-05 16:47:03 +11:00

27 lines
621 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 publishRepo: Task = {
before: ['bootstrap-repo'],
async ready() {
return pathExists(verdaccioCacheDir);
},
async run(_, { dryRun, debug }) {
return exec(
'yarn local-registry --publish',
{},
{
startMessage: '📕 Publishing packages',
errorMessage: '❌ Failed publishing packages',
dryRun,
debug,
}
);
},
};