Make WordPress Core

Changeset 51036


Ignore:
Timestamp:
05/27/2021 12:27:36 AM (5 years ago)
Author:
peterwilsoncc
Message:

Build tools: Use hashed module IDs for minified files.

Further improves webpack configuration for editor files to use hashed module IDs in the compressed (*.min.js) production files.

Follow up to [50940].

Props @gziolo.
Merges [51035] to the 5.7 branch.
Fixes #53192.

Location:
branches/5.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.7

  • branches/5.7/tools/webpack/packages.js

    r50990 r51036  
    251251                },
    252252                optimization: {
    253                         moduleIds: 'named',
     253                        moduleIds: mode === 'production' ? 'hashed' : 'named',
    254254                },
    255255                plugins: [
Note: See TracChangeset for help on using the changeset viewer.