-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
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
modularize.js class support #19061
modularize.js class support #19061
Conversation
oops. realized that in |
I'm not sure I understand what this PR is intended to do... |
See #11552 (comment). I haven't tested to see if this works as intended yet, but the goal looks good to me: Because |
So after this PR, I intend on working my way through |
Haven't read #11552 yet, but converting |
We can't convert |
I think we would should only move forward with the class migration until it's clear what's happening with |
It's no harder to convert Deleting |
Yeah, that make sense. Modules and classes are two different things. However, if the project decides to deprecate |
I think that as long as both (1) Add a deprecation warning to every file in I don't think there should be any middle stage where |
if it's ok with you guys, I might jump ahead and work through a couple of files as though this PR was merged. worst case, I'll have a bunch more PR's that wont make sense until this one is merged (which I can close if examples/js/ is suddenly depreciated) |
Order of regex's matters. |
I think it's better to wait until the roadmap is clear. |
sure. I'll create an issue for it to be discussed. |
Tests is ok here. |
Closing, see #19073 (comment) |
goodness. @Mugen87 could you please reopen this PR if after some thought and discussion we realize going down this route was actually an all good idea. |
We have reopened PRs in the past. Having them closed sends the signal to contributors that we currently don't think it's the way to go. |
sure. hey, is it possible that I missed these nuances in a doc somewhere? |
relates to #11552
Initial regex proposal.
I wasn't sure why
([a-zA-Z0-9]+)
was being used instead of(\w+)
. mdn link about character classes Happy to change that around later.