-
Notifications
You must be signed in to change notification settings - Fork 65
Support --allow-duplicate-declarations #90
base: master
Are you sure you want to change the base?
Conversation
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
Will sign the CLA. This is a version of #79 with a test for the default value and the required behavior. There are no tests that I could find easily for DuplicateDeclarations so I did not add to them. Happy to add tests if you point to where I should. |
Hi there, I can't think of a reasonable way of testing this, so I think your change is fine as-is. If you sign the CLA, then I'll pull the change internally and then push it back out. Ian |
@iflan Is there a way to build and run this jar locally? Running |
I'll try right now and get back to you. |
|
Agreed. Running that jar however does not have a main attribute in the manifest file. What process is used to build the releases? |
I signed the CLA |
So true! Let me fix that right now. |
I've created a branch called mvn clean compile assembly:single I'm not committing that to Also, you still don't show up as having signed the CLA. This could be because you used a different email address or GitHub username. Please verify that the email address in the git log is the same as the one you signed the CLA with. Thanks for your help! Ian |
When using CSS transform tools such as autoprefixer, the generated code can include duplicate declarations but not include the alternate annotation. This allows developers to opt out of the check during the dead code elimination pass.
When using CSS transform tools such as autoprefixer, the generated code
can include duplicate declarations but not include the alternate
annotation. This allows developers to opt out of the check during the
dead code elimination pass.