-
-
Notifications
You must be signed in to change notification settings - Fork 27.1k
format UglifyJs error #2650
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
format UglifyJs error #2650
Changes from 5 commits
3641c5c
52bd133
0af70c2
b53f903
31fe07e
212736d
a0d089b
8f67581
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 |
|---|---|---|
|
|
@@ -220,6 +220,20 @@ compiler.plugin('done', function(stats) { | |
| }); | ||
| ``` | ||
|
|
||
| #### `formatBuildError(error: Object): String` | ||
|
|
||
| Prettify some known build errors. | ||
| Pass an Error object to log a prettified error message in the console | ||
|
|
||
| ``` | ||
| const formatBuildError = require('react-dev-utils/formatBuildError') | ||
| try { | ||
| build() | ||
| } catch(e){ | ||
|
||
| formatBuildError(e) // logs prettified message | ||
| } | ||
| ``` | ||
|
|
||
| #### `getProcessForPort(port: number): string` | ||
|
|
||
| Finds the currently running process on `port`. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| /** | ||
| * Copyright (c) 2015-present, Facebook, Inc. | ||
| * All rights reserved. | ||
| * | ||
| * This source code is licensed under the BSD-style license found in the | ||
| * LICENSE file in the root directory of this source tree. An additional grant | ||
| * of patent rights can be found in the PATENTS file in the same directory. | ||
| */ | ||
|
|
||
| 'use strict'; | ||
|
|
||
| const get = require('lodash/get'); | ||
| const chalk = require('chalk'); | ||
|
|
||
| module.exports = function formatBuildError(err) { | ||
|
||
| const message = get(err, 'message'); | ||
| const stack = get(err, 'stack'); | ||
|
|
||
| // Add more helpful message for UglifyJs error | ||
| if ( | ||
| stack && | ||
| typeof message === 'string' && | ||
| message.indexOf('from UglifyJs') !== -1 | ||
| ) { | ||
| try { | ||
| const matched = /Unexpected token:(.+)\[(.+)\:(.+)\,(.+)\]\[.+\]/.exec( | ||
| stack | ||
| ); | ||
| if (!matched) { | ||
| throw new Error( | ||
| "The regex pattern is not matched. Maybe UglifyJs changed it's message?" | ||
| ); | ||
| } | ||
| const problemPath = matched[2]; | ||
| const line = matched[3]; | ||
| const column = matched[4]; | ||
| console.log( | ||
| 'Failed to minify the code from this file: \n\n', | ||
| chalk.yellow(`${problemPath} line ${line}:${column}`), | ||
| '\n' | ||
| ); | ||
| } catch (ignored) { | ||
| console.log('Failed to minify the code.', err); | ||
| } | ||
| console.log( | ||
| 'Please check your dependencies for any untranspiled es6 code and raise an issue with \n' + | ||
| 'the author. \n' + | ||
| '\nIf you need to use the module right now, you can try placing the source in ./src \n' + | ||
| 'and we will transpile it for you.' | ||
|
||
| ); | ||
| } else { | ||
| console.log((message || err) + '\n'); | ||
| } | ||
| }; | ||
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.
nit: missing period at end