-
Notifications
You must be signed in to change notification settings - Fork 504
Remove unused PostCSS plugins #3547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
This should be backported to 8.x and 7.x, as these PostCSS plugins are unused in those versions as well. I'll create manual backports. |
kshepherd
left a comment
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.
+1 tests well (and the 7.x backport is already reviewed and merged)
|
Backport failed for Please cherry-pick the changes locally and resolve any conflicts. git fetch origin dspace-8_x
git worktree add -d .worktree/backport-3547-to-dspace-8_x origin/dspace-8_x
cd .worktree/backport-3547-to-dspace-8_x
git switch --create backport-3547-to-dspace-8_x
git cherry-pick -x c93ed03004ddff1186548342b853df2281bdb43a 39c5c755d75339230681d45fec5b4878634d7e16 |
|
@tdonohue the failed backport could be because of the previous merges that also change package.json so hopefully not hard to manually create |
|
@kshepherd : the automated backport error is expected. I should have removed that This PR was already (manually) ported to both 8.x and 7.x: |
[GLAM-952] fix issue with bitstream observable emission Approved-by: Vincenzo Mecca
Description
Several PostCSS plugins are installed in DSpace but are unused. Specifically:
postcss-apply(used via@apply...which is never used in our SCSS files)postcss-responsive-type(used viaresponsive...which is never used in our SCSS files)Because these are unused, I'm removing them completely. Both of these plugins also rely on outdated versions of PostCSS. So, removing them makes it much easier to upgrade PostCSS in the future.
Instructions for Reviewers