mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 04:48:25 +01:00
Build Tools: Minify the package CSS when building.
CSS coming from the `@wordpress` packages wasn't being minified in the build. This had the noteable side effect of causing RTL CSS to not be loaded when `SCRIPT_DEBUG` was set to `false`. Props websupporter. See #45330. git-svn-id: https://develop.svn.wordpress.org/branches/5.0@43905 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
ea48d8514b
commit
d2ca4ad836
10
Gruntfile.js
10
Gruntfile.js
@ -199,6 +199,15 @@ module.exports = function(grunt) {
|
||||
'wp-includes/js/mediaelement/wp-mediaelement.css'
|
||||
]
|
||||
},
|
||||
dist: {
|
||||
expand: true,
|
||||
cwd: BUILD_DIR,
|
||||
dest: BUILD_DIR,
|
||||
ext: '.min.css',
|
||||
src: [
|
||||
'wp-includes/css/dist/*/*.css'
|
||||
]
|
||||
},
|
||||
rtl: {
|
||||
expand: true,
|
||||
cwd: BUILD_DIR,
|
||||
@ -939,6 +948,7 @@ module.exports = function(grunt) {
|
||||
'usebanner',
|
||||
'webpack:prod',
|
||||
'webpack:devProdTarget',
|
||||
'cssmin:dist',
|
||||
'jsvalidate:build'
|
||||
] );
|
||||
|
||||
|
@ -1675,12 +1675,12 @@ function wp_default_styles( &$styles ) {
|
||||
}
|
||||
$styles->add( 'wp-editor-font', $fonts_url );
|
||||
|
||||
$styles->add( 'wp-block-library-theme', '/wp-includes/css/dist/block-library/theme.css' );
|
||||
$styles->add( 'wp-block-library-theme', "/wp-includes/css/dist/block-library/theme$suffix.css" );
|
||||
$styles->add_data( 'wp-block-library-theme', 'rtl', 'replace' );
|
||||
|
||||
$styles->add(
|
||||
'wp-edit-blocks',
|
||||
'/wp-includes/css/dist/block-library/editor.css',
|
||||
"/wp-includes/css/dist/block-library/editor$suffix.css",
|
||||
array(
|
||||
'wp-components',
|
||||
'wp-editor',
|
||||
@ -1702,7 +1702,7 @@ function wp_default_styles( &$styles ) {
|
||||
|
||||
foreach ( $package_styles as $package => $dependencies ) {
|
||||
$handle = 'wp-' . $package;
|
||||
$path = '/wp-includes/css/dist/' . $package . '/style.css';
|
||||
$path = "/wp-includes/css/dist/$package/style$suffix.css";
|
||||
|
||||
$styles->add( $handle, $path, $dependencies );
|
||||
$styles->add_data( $handle, 'rtl', 'replace' );
|
||||
|
Loading…
x
Reference in New Issue
Block a user