Make WordPress Core

Opened 7 years ago

Closed 6 years ago

#44328 closed defect (bug) (wontfix)

grunt watch does not include cssmin; changes to css files in src are copied to build but not minified

Reported by: allendav's profile allendav Owned by:
Milestone: Priority: normal
Severity: normal Version:
Component: Build/Test Tools Keywords: needs-patch
Focuses: Cc:

Description

If you make a change to a css file, e.g. src/wp-admin/css/forms.css while grunt watch is running, the change will be copied to build/wp-admin/css/forms.css but build/wp-admin/css/forms.min.css is not updated

It is necessary to independently run
grunt cssmin
to get the minified css files updated.

Change History (6)

This ticket was mentioned in Slack in #core-privacy by allendav. View the logs.


7 years ago

#2 @netweb
7 years ago

  • Keywords needs-patch added
  • Milestone changed from Awaiting Review to 5.0

Historically the Grunt watch tasks did not run the CSS and JS minify tasks as SCRIPT_DEBUG was defined true when developing in the src folder.

With the new build process JS files are minified as part of the watch task, we should do the same for CSS files

#3 @azaozz
7 years ago

Ideally both SCRIPT_DEBUG and WP_DEBUG should be enabled when developing. Perhaps best would be if we can force these when doing grunt watch.

Version 0, edited 7 years ago by azaozz (next)

#4 @jorbin
6 years ago

  • Milestone changed from 5.0 to 5.1

#5 @pento
6 years ago

  • Keywords close added

Given that we can now run trunk from src again, I'm inclined to not worry about this.

#6 @pento
6 years ago

  • Keywords close removed
  • Milestone 5.1 deleted
  • Resolution set to wontfix
  • Status changed from new to closed
Note: See TracTickets for help on using tickets.