Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #48154, comment 27


Ignore:
Timestamp:
01/24/2020 03:06:43 AM (4 years ago)
Author:
azaozz
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #48154, comment 27

    initial v1  
    55
    66Why would you want to split one file into 80 one-line files and then `require` them (or half of them) every time the app runs? There is some mild slowdown/increased use of resources on the server regardless of whether these files are used or not. What are the benefits for the built app?
     7
     8Then, making architectural changes/adding new files "locks" them in place. Generally it becomes quite hard to move or delete them later as these changes are in the built/production version.
    79
    810> If we were to change how the /build is handled, it would have to change for JS files as well.