-
-
Notifications
You must be signed in to change notification settings - Fork 233
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
Roadmap #64
Comments
I fixed #48 in the "Consolidated closures" commit in #53. There are "..." buttons on those commits for you to read further commenting, in case you aren't familiar with GitHub.
|
@stevenvachon another preference is for single-purpose pull requests. I agree with @eligrey about #53. IMO it does too much at once. Before the closures can be consolidated, lets cleanup the whitespace. Before we touch every line with whitespace cleanup, lets get the tests in working condition. I would expect a fix for #48 to have a diff of ~2 lines, something like: -}(self));
+}(typeof self !== 'undefined' ? self : this)); |
The whitespace commit occurs before the closure consolidation commit. You can click each commit to see its specific code changes. |
This is what I do with every polyfill I deal with. BTW I'm gonna send a PR regarding !a===!b at the bottom of the polyfill, tha last thing which is a thorn. |
That's @beck responding to:
He's telling you he would like those to be separate PRs, not just separate commits. Condescension is not an appropriate response. |
And I'm telling him and anyone else that they can go through the commits. I have little interest in redoing my PRs after all this time. |
This repo now has few more maintainers (including myself).
Before making any big changes would like to:
Say Hi
Make a todo list
prepublish
Flesh out any preferences, paint a bikeshed
When writing JS I generally stick to airbnb-ish style.
For testing, prefer Mocha+chai (with karma running the tests) instead of QUnit.
Prefer plain old shell or JS scripts instead task managers.
The text was updated successfully, but these errors were encountered: