Make WordPress Core

Changeset 32066


Ignore:
Timestamp:
04/07/2015 04:37:24 AM (9 years ago)
Author:
jorbin
Message:

Don't override minified libraries included in core

A number of libraries that we include in core come with minified versions that we also include in core. The build process shouldn't override them.

Fixes #31477
Props ocean90, jorbin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Gruntfile.js

    r31875 r32066  
    409409
    410410                    // Exceptions
     411                    '!wp-admin/js/bookmarklet.*', // Minified and updated in /src with the precommit task. See uglify:bookmarklet.
    411412                    '!wp-admin/js/custom-header.js', // Why? We should minify this.
    412413                    '!wp-admin/js/farbtastic.js',
    413414                    '!wp-admin/js/iris.min.js',
    414                     '!wp-admin/js/bookmarklet.*', // Minified and updated in /src with the precommit task. See uglify:bookmarklet.
    415                     '!wp-includes/js/backbone.min.js',
     415                    '!wp-includes/js/backbone.*',
     416                    '!wp-includes/js/masonry.min.js',
    416417                    '!wp-includes/js/swfobject.js',
    417                     '!wp-includes/js/underscore.min.js',
     418                    '!wp-includes/js/underscore.*',
    418419                    '!wp-includes/js/zxcvbn.min.js'
    419420                ]
Note: See TracChangeset for help on using the changeset viewer.