mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:31:08 +08:00
27 lines
621 B
TypeScript
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,
|
|
}
|
|
);
|
|
},
|
|
};
|