Skip to content

Commit fb3e0f3

Browse files
author
Kristján Oddsson
authored
Merge pull request #43 from github/dont-transform-classes
Dont transform classes
2 parents 78f7a5d + 6c604db commit fb3e0f3

File tree

6 files changed

+506
-378
lines changed

6 files changed

+506
-378
lines changed

.babelrc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
{
2-
"plugins": [
3-
"transform-custom-element-classes",
4-
],
5-
"presets": [["@babel/env", { "modules": false }]],
2+
"presets": ["github"],
63
"env": {
74
"umd": {
85
"plugins": [
9-
"transform-custom-element-classes",
106
"@babel/plugin-transform-modules-umd"
117
]
128
}

.eslintrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,19 @@
22
"extends": [
33
"plugin:github/es6",
44
"plugin:github/browser"
5+
],
6+
"overrides": [
7+
{
8+
"files": "test/**/*.js",
9+
"globals": {
10+
"assert": true
11+
},
12+
"env": {
13+
"mocha": true
14+
},
15+
"rules": {
16+
"github/unescaped-html-literal": "off"
17+
}
18+
}
519
]
620
}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ Browsers without native [custom element support][support] require a [polyfill][]
107107
- Chrome
108108
- Firefox
109109
- Safari
110-
- Internet Explorer 11
111110
- Microsoft Edge
112111

113112
[support]: https://caniuse.com/#feat=custom-elementsv1

0 commit comments

Comments
 (0)