Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e3672fe

Browse files
committedSep 26, 2018
Tweak message
1 parent 6c88d79 commit e3672fe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

Diff for: ‎packages/react-dev-utils/formatWebpackMessages.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,9 @@ function formatMessage(message, isError) {
134134
}
135135

136136
if (lines[1].match(/sass-loader.+node-sass.+install/)) {
137-
lines[1] =
138-
'You need to install `node-sass` to compile Sass files.\nPlease run `npm i node-sass` or `yarn add node-sass` in your workspace.';
137+
lines[1] = 'You need to install `node-sass` to compile Sass files.\n';
138+
lines[1] +=
139+
'Please run `npm i node-sass` or `yarn add node-sass` inside your workspace.';
139140
}
140141

141142
lines[0] = chalk.inverse(lines[0]);

0 commit comments

Comments
 (0)
Please sign in to comment.