-
Notifications
You must be signed in to change notification settings - Fork 396
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
feat(compat): Moving push, unshift and concat to xproxy prototype #2
Conversation
Thanks for the contribution! Unfortunately we can't verify if the committer, David Turissini, has signed the CLA because they have not associated their commits with their GitHub user. Please follow these instructions to associate your commits with your GitHub user. Then sign the Salesforce Contributor License Agreement and this Pull Request will be revalidated. |
@davidturissini please format PR title
|
@davidturissini don't mean to bother, but can we pls keep scope lower cased? Seems like convention for type and scope is always lowercase |
@lwc/node-reactions Library to react to dom elements connecting and disconnecting from the document
* feat: RFC for canonical metadata shape of LWC modules * fix: table of content * fix: minor polishing * feat: add more types * fix: address PR comments rename file to follow convention for draft stage RFCs * fix: define shape in typescript * fix: incorporate feedback to treat modules as individual entry * fix: update examples link for html template * feat: support expressions * feat: Update types for script and add link to samples * docs(metadat): bundle metadata shape #2 @W-7263561@ (#34) * docs(metadat): bundle metadata shape #2 * wip: add documentation * wip: second pass * wip: review comments * wip: correct types * docs: incorporate feedback about class members, imports, exports * docs: incorporate feedback from PR comments * docs: incorporate more feedback from review * docs: add apis for each file type * docs: add types for exisitng data binding ast for template * docs: css custom property type (#37) * docs: css custom property type * docs: css custom property type * wip: split refs and decls * docs: update status to DRAFTED * fix: minor improvements * chore: 230 release updates * docs: rename of project and call out design decisions Co-authored-by: Aliaksandr Papko <apapko@salesforce.com>
PR Checklist
What kind of change does this PR introduce? (add 'x' - [x])
Does this PR introduce a breaking change? (check one)
If yes, please describe the impact and migration path for existing applications:
Please check if your PR fulfills the following requirements:
The PR fulfills these requirements:
commit-type(optional scope): commit description.
http://conventionalcommits.org/
Other information:
Removes: Proxy.compatPush, Proxy.compatConcat, Proxy.compatUnshift in favor of push, concat and unshift defined on XProxy prototype.
This change will allow us to transpile less code especially when it comes to arrays.