Skip to content
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

Update dependencies #55

Closed
wants to merge 1 commit into from
Closed

Commits on Aug 22, 2016

  1. Update dependencies

    Fixes issue where using source maps with older versions of uglify generates
    tons of warnings.
    
    Using source maps with older versions of uglify generates many (~7000 for my
    SPA) warnings that look like:
    
    ```
    WARN: Couldn't figure out mapping for ?:62,2 → 1,1611 []
    WARN: Couldn't figure out mapping for ?:62,15 → 1,1613 []
    WARN: Couldn't figure out mapping for ?:63,4 → 1,1648 []
    WARN: Couldn't figure out mapping for ?:68,9 → 1,1690 []
    ...
    ```
    
    This is due to a [bug in the `source-map` library][bug] which is a dependency
    of `uglify-js`.
    
    Restricting `uglify-js` and `convert-source-map` to newer versions ensures that
    incompatible versions of `source-map` are not installed.
    
    [bug]: mishoo/UglifyJS#436
    wesvetter committed Aug 22, 2016
    Configuration menu
    Copy the full SHA
    a5785ac View commit details
    Browse the repository at this point in the history