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

Fixed syntax errors while minifying jquery-3.2.1 #279

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Apr 20, 2017

  1. Fixed syntax errors while minifying jquery-3.2.1

    Problem was that jQquery uses a property named 'throws', which is a
    future reserved keyword in YUI compressor. With the patch the check for
    the throws keyword has been removed, so the property is treated like any
    other regular property.
    
    Set version to 2.4.9-BSI-1.
    awegmueller committed Apr 20, 2017
    Configuration menu
    Copy the full SHA
    b7f6945 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2020

  1. Remove final and native from the list of reserved keywords

    jquery-3.4.1 uses final as variable name -> minifying with yui fails.
    The same happens if a variable called native would be used. Both
    words are no official keywords anymore and can officially be used
    as variable names -> support it.
    
    Updated version to 2.4.9-BSI-2.
    cguglielmo committed Feb 6, 2020
    Configuration menu
    Copy the full SHA
    05983d9 View commit details
    Browse the repository at this point in the history