Skip to content

Commit

Permalink
fix(messages): Fix indentation for base path in build messages
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rkr00t committed Sep 30, 2016
1 parent eeaec22 commit af427d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/webpack/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function builderBanner(filename, flags, params) {

var base = flags.base;
if (base && typeof base === 'string') {
msg.push(_chalk2.default.magenta('Base path: ') + base);
msg.push(_chalk2.default.magenta('Base path: ') + base);
}

msg.push(_chalk2.default.magenta('CSS Modules: ') + (flags.cssmodules ? _chalk2.default.green('enabled') : 'disabled'));
Expand Down
2 changes: 1 addition & 1 deletion src/lib/webpack/messages.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export function builderBanner(filename:string, flags:CLIFlags, params:AikParams)

const base = flags.base;
if (base && typeof base === 'string') {
msg.push(chalk.magenta('Base path: ') + base);
msg.push(chalk.magenta('Base path: ') + base);
}

msg.push(chalk.magenta('CSS Modules: ') + (flags.cssmodules ? chalk.green('enabled') : 'disabled'));
Expand Down

0 comments on commit af427d4

Please sign in to comment.