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 | 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
#3
@
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
(next)
Note: See
TracTickets for help on using
tickets.
Historically the Grunt watch tasks did not run the CSS and JS minify tasks as
SCRIPT_DEBUG
was definedtrue
when developing in thesrc
folder.With the new build process JS files are minified as part of the watch task, we should do the same for CSS files