Skip to content

Commit

Permalink
fix: remove --ci from storybook build
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinschaul committed Jun 20, 2024
1 parent f1c9aff commit adc674c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/buildStorybook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ const buildStorybook = async (opts: BuildStorybookOpts) => {
// Build the site
const outDir = join(opts.startersDir, "dist")
console.log(`Building site to ${outDir}`);
spawnWithIO("storybook", ["build", "--ci", "--output-dir", outDir], { cwd: toolsRoot });
spawnWithIO("storybook", ["build", "--output-dir", outDir], { cwd: toolsRoot });
};
export default buildStorybook;

0 comments on commit adc674c

Please sign in to comment.