Skip to content

Commit

Permalink
chore: add testcases last 2 versions not ie
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Dec 4, 2019
1 parent 72a5b1b commit 7402a40
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
@@ -0,0 +1 @@
import "core-js";
@@ -0,0 +1,20 @@
{
"validateLogs": true,
"ignoreOutput": true,
"presets": [
[
"env",
{
"debug": true,
"targets": {
"browsers": [
"last 2 versions",
"not ie <= 11",
"not ie_mob <= 11",
"not op_mob <= 12.1"
]
}
}
]
]
}
@@ -0,0 +1,31 @@
@babel/preset-env: `DEBUG` option

Using targets:
{
"android": "76",
"chrome": "77",
"edge": "17",
"firefox": "68",
"ios": "13",
"opera": "46",
"safari": "12.1",
"samsung": "9.2"
}

Using modules transform: auto

Using plugins:
transform-template-literals { "safari":"12.1" }
transform-function-name { "edge":"17" }
transform-dotall-regex { "edge":"17", "firefox":"68", "opera":"46" }
transform-parameters { "edge":"17" }
proposal-async-generator-functions { "edge":"17", "opera":"46" }
proposal-object-rest-spread { "edge":"17", "opera":"46" }
proposal-unicode-property-regex { "edge":"17", "firefox":"68", "opera":"46" }
proposal-json-strings { "edge":"17", "opera":"46" }
proposal-optional-catch-binding { "edge":"17", "opera":"46" }
transform-named-capturing-groups-regex { "edge":"17", "firefox":"68", "opera":"46" }
transform-modules-commonjs { "android":"76", "chrome":"77", "edge":"17", "firefox":"68", "ios":"13", "opera":"46", "safari":"12.1", "samsung":"9.2" }
proposal-dynamic-import { "android":"76", "chrome":"77", "edge":"17", "firefox":"68", "ios":"13", "opera":"46", "safari":"12.1", "samsung":"9.2" }

Using polyfills: No polyfills were added, since the `useBuiltIns` option was not set.

0 comments on commit 7402a40

Please sign in to comment.