Skip to content

Commit

Permalink
fix(loggin): Update name for logging (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerlaws0n committed Jan 3, 2024
1 parent 8759b79 commit c19d0b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/webpackFinal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ export function webpackFinal(
) {
logger.info(
`=> [${colors.pink.bold(
"@storybook/addon-styling"
"@storybook/addon-styling-webpack"
)}] Applying custom Storybook webpack configuration styling.`
);
if (plugins && plugins.length) {
logger.info(
`=> [${colors.pink.bold(
"@storybook/addon-styling"
"@storybook/addon-styling-webpack"
)}] Adding given plugins to Storybook webpack configuration.`
);
config.plugins = config.plugins || [];
Expand All @@ -30,7 +30,7 @@ export function webpackFinal(
if (rules && rules.length) {
logger.info(
`=> [${colors.pink.bold(
"@storybook/addon-styling"
"@storybook/addon-styling-webpack"
)}] Replacing Storybook's webpack rules for styles with given rules.`
);

Expand Down

0 comments on commit c19d0b9

Please sign in to comment.