-
Notifications
You must be signed in to change notification settings - Fork 39
Updated gulp task to require Autoprefixer #46
Conversation
@dainemawer please make sure this is updated in the plugin repo as well. Will merge after that. |
@dainemawer I did a little digging and it looks like autoprefixer is included with the |
@timwright12 I tested with
and the output is:
So looks like you are right, it's not working for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just making a note here that we need to update this to:
const cssOpts = {
stage: 0,
autoprefixer: {
grid: true
}
};
…equire autoprefixer
@timwright12 @magnificode PR updated with fix |
@dainemawer This looks good, but make sure you sync this change in the plugin repo 10up/plugin-scaffold#48 We'll merge at the same time. |
@timwright12 added PR for the plugin and tagged you |
Fixes a problem where Autoprefixer is not run during the Gulp build task.
This issue was originally discovered after inspecting
.min.css
files in thedist
folder.