Skip to content

Commit 10bd595

Browse files
committed
ie11 support
1 parent da75ba6 commit 10bd595

File tree

3 files changed

+97
-97
lines changed

3 files changed

+97
-97
lines changed

babel.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
presets: [
3-
["@babel/preset-env", { targets: { node: "current" } }],
3+
["@babel/preset-env", { targets: { ie: 11 }, useBuiltIns: "usage" }],
44
"@babel/preset-typescript"
55
]
6-
};
6+
}

package-lock.json

Lines changed: 91 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@autifyhq/html-table-parser",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Parse html tables and convert to json",
55
"source": "lib/html-table-parser.ts",
66
"main": "dist/html-table-parser.js",
@@ -22,7 +22,9 @@
2222
"url": "https://github.com/autifyhq/html-table-parser/issues"
2323
},
2424
"homepage": "https://github.com/autifyhq/html-table-parser#readme",
25-
"dependencies": {},
25+
"dependencies": {
26+
"core-js": "^3.2.1"
27+
},
2628
"devDependencies": {
2729
"@babel/core": "^7.5.5",
2830
"@babel/preset-env": "^7.5.5",

0 commit comments

Comments
 (0)