Skip to content

Commit

Permalink
Merge pull request #18359 from storybookjs/chore/clean-verdaccio-cach…
Browse files Browse the repository at this point in the history
…e-locally

Scripts: Clean verdaccio cache when running locally
  • Loading branch information
yannbf committed Jun 6, 2022
2 parents 850e740 + 0c0a21b commit 6aa3f16
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions scripts/run-registry.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { exec } from 'child_process';
import { remove, pathExists } from 'fs-extra';
import chalk from 'chalk';
import path from 'path';
import program from 'commander';
Expand Down Expand Up @@ -176,6 +177,16 @@ const run = async () => {

logger.log(`📐 reading version of storybook`);
logger.log(`🚛 listing storybook packages`);

if (!process.env.CI) {
// when running e2e locally, clear cache to avoid EPUBLISHCONFLICT errors
const verdaccioCache = path.resolve(__dirname, '..', '.verdaccio-cache');
if (await pathExists(verdaccioCache)) {
logger.log(`🗑 cleaning up cache`);
await remove(verdaccioCache);
}
}

logger.log(`🎬 starting verdaccio (this takes ±5 seconds, so be patient)`);

const [verdaccioServer, packages, version] = await Promise.all<any, Package[], string>([
Expand Down

0 comments on commit 6aa3f16

Please sign in to comment.