-
-
Notifications
You must be signed in to change notification settings - Fork 372
feat: Less verbose error output #206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,7 +38,12 @@ const devBuild = async (env, onprogress) => { | |
| let serverAddr = `${protocol}://${host}:${chalk.bold(port)}`; | ||
| let localIpAddr = `${protocol}://${ip.address()}:${chalk.bold(port)}`; | ||
|
|
||
| process.stdout.write(chalk.green('\nCompiled successfully!!\n\n')); | ||
| if (stats.hasErrors()) { | ||
| process.stdout.write(chalk.red('\Build failed!\n\n')); | ||
| } else { | ||
| process.stdout.write(chalk.green('\nCompiled successfully!\n\n')); | ||
| } | ||
|
|
||
| if (userPort !== port) { | ||
| process.stdout.write(`Port ${chalk.bold(userPort)} is in use, using ${chalk.bold(port)} instead\n\n`); | ||
| } | ||
|
|
@@ -71,7 +76,8 @@ const prodBuild = async (env) => { | |
| return await new Promise((resolve, reject) => { | ||
| compiler.run((err, stats) => { | ||
| if (err || stats.hasErrors()) { | ||
| reject(err || stats.toJson().errors.join('\n')); | ||
| showStats(stats); | ||
| reject(chalk.red('Build failed!')); | ||
| } | ||
| else { | ||
| // Timeout for plugins that work on `after-emit` event of webpack | ||
|
|
@@ -82,16 +88,16 @@ const prodBuild = async (env) => { | |
| }; | ||
|
|
||
| export function showStats(stats) { | ||
| let info = stats.toJson(); | ||
| let info = stats.toJson("errors-only"); | ||
|
|
||
| if (stats.hasErrors()) { | ||
| info.errors.forEach( message => { | ||
| process.stderr.write(message+'\n'); | ||
| info.errors.map(stripBabelLoaderPrefix).forEach( message => { | ||
| process.stderr.write(chalk.red(message)+'\n'); | ||
| }); | ||
| } | ||
|
|
||
| if (stats.hasWarnings()) { | ||
| info.warnings.forEach( message => { | ||
| info.warnings.map(stripBabelLoaderPrefix).forEach( message => { | ||
| process.stderr.write(chalk.yellow(message)+'\n'); | ||
| }); | ||
| } | ||
|
|
@@ -109,8 +115,8 @@ export function writeJsonStats(stats) { | |
|
|
||
| jsonStats = (jsonStats.children && jsonStats.children[0]) || jsonStats; | ||
|
|
||
| jsonStats.modules.forEach(normalizeModule); | ||
| jsonStats.chunks.forEach(c => c.modules.forEach(normalizeModule)); | ||
| jsonStats.modules.forEach(stripBabelLoaderFromModuleNames); | ||
| jsonStats.chunks.forEach(c => c.modules.forEach(stripBabelLoaderFromModuleNames)); | ||
|
|
||
| return fs.writeFile(outputPath, JSON.stringify(jsonStats)) | ||
| .then(() => { | ||
|
|
@@ -121,20 +127,20 @@ export function writeJsonStats(stats) { | |
| }); | ||
| } | ||
|
|
||
| const normalizeModule = m => { | ||
| const stripBabelLoaderFromModuleNames = m => { | ||
| const keysToNormalize = ['identifier', 'name', 'module', 'moduleName', 'moduleIdentifier']; | ||
|
|
||
| keysToNormalize.forEach(key => { | ||
| if (key in m) { | ||
| m[key] = normalizeName(m[key]); | ||
| m[key] = stripBabelLoaderPrefix(m[key]); | ||
| } | ||
| }); | ||
|
|
||
| if (m.reasons) { | ||
| m.reasons.forEach(normalizeModule); | ||
| m.reasons.forEach(stripBabelLoaderFromModuleNames); | ||
| } | ||
|
|
||
| return m; | ||
| }; | ||
|
|
||
| const normalizeName = p => p.substr(p.lastIndexOf('!') + 1); | ||
| const stripBabelLoaderPrefix = log => log.replace(/@?\s*(\.\/~\/babel-loader\/lib\?{[\s\S]*?}!)/g, ''); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have a boatload more of these transforms we can add, I'll get clearance to release them shortly. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would love to see those boatload of transforms @developit ! |
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Better to expose the IP addresses & port message only when the build is successful !!
otherwise LGTM !!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That could be possible but I don't know really.
webpack-dev-servershows address always on first compilation.We kinda don't inform users after they fixed the errors if anything occurred. Maybe the output should look like this:
Let me know what you think (also @lukeed @developit @thangngoc89 )
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only show live URL on first render is more than enough for me. And I really hate any watcher that clear my terminal output
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm good with that format. I believe the "compiled successfully" bit can be done as the completion message of ProgressBarPlugin if it isn't already.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is now kinda different with @reznord's changes. Basically we would now show address only for successful builds and clear console after each build (IMHO that's much nicer).