Skip to content

Commit

Permalink
Dipping toes just a little further into the water
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewortwein committed Feb 21, 2024
1 parent edc44c3 commit 7193df5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node-src/lib/checkStorybookBaseDir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import pLimit from 'p-limit';
import { exitCodes, setExitCode } from './setExitCode';

export async function checkStorybookBaseDir(ctx: Context, stats: Stats) {
return;

const { storybookBaseDir } = ctx.options;
ctx.log.debug('Storybook base directory:', storybookBaseDir);

return;

// Find all js(x)/ts(x) files in stats that are not in node_modules
const sourceModuleFiles = stats.modules.filter(
(module: any) => !module.name.includes('node_modules') && /\.(js|jsx|ts|tsx)$/.test(module.name)
Expand Down

0 comments on commit 7193df5

Please sign in to comment.