Changeset 62081 for trunk/src/wp-includes/script-modules.php
- Timestamp:
- 03/20/2026 05:09:14 PM (8 days ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/script-modules.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/script-modules.php
r62072 r62081 191 191 } 192 192 193 // VIPS files are always minified — the non-minified versions are not 194 // shipped because they are ~10MB of inlined WASM with no debugging value. 195 if ( str_starts_with( $file_name, 'vips/' ) ) { 196 $file_name = str_replace( '.js', '.min.js', $file_name ); 197 } elseif ( '' !== $suffix ) { 193 if ( '' !== $suffix ) { 198 194 $file_name = str_replace( '.js', $suffix . '.js', $file_name ); 199 195 }
Note: See TracChangeset
for help on using the changeset viewer.