-
Notifications
You must be signed in to change notification settings - Fork 30
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
fix(design): Remove autoprefixer comment for webpack v5 #2132
Conversation
Deploying atlantis with Cloudflare Pages
|
@@ -7,7 +7,6 @@ | |||
} | |||
|
|||
/* Safari doesn't support scrollbar-color yet, so we're using the non-standard selector for now. */ | |||
/* autoprefixer: off */ |
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.
Hey @timkooi-jobber, thanks for looking into this!
I just tested this locally and found that removing both comments seems to work fine. I realized we used to need this comment due to us checking @supports
with ::-webkit-scrollbar
which is why our (atlantis) postcss was erroring before... but that's no longer the case as of 2 weeks ago.
Once you remove the second comment, we can build a pre-release of the design package for you to test in JO with your webpacker upgrade, to confirm it's working.
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.
Looks good!
Published Pre-release for 7584b73 with versions:
To install the new version(s) for Web run:
To install the new version(s) for Mobile run:
|
Motivations
Upgrading to Webpack v5, we were getting a warning that the second autoprefixer comment was being ignored. This would cause an overlay of the warning on the Jobber application.
Changes