Skip to content
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: update class properties support matrix #11783

Merged
merged 1 commit into from Jul 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/babel-compat-data/data/plugins.json
Expand Up @@ -15,11 +15,11 @@
"opera": "61",
"edge": "79",
"node": "12",
"electron": "6.1"
"samsung": "11",
"electron": "6"
},
"proposal-private-methods": {
"chrome": "84",
"opera": "71"
"chrome": "84"
},
"proposal-nullish-coalescing-operator": {
"chrome": "80",
Expand Down
7 changes: 6 additions & 1 deletion packages/babel-compat-data/scripts/data/plugin-features.js
Expand Up @@ -125,7 +125,12 @@ const es2020 = {
const shippedProposal = {
"proposal-numeric-separator": "numeric separator",
"proposal-class-properties": {
features: ["static class fields", "instance class fields"],
features: [
"static class fields",
"instance class fields, public instance class fields",
"instance class fields, private instance class fields basic support",
"instance class fields, computed instance class fields",
],
},
"proposal-private-methods": "private class methods",
};
Expand Down