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

Add opera mobile compat data #15727

Merged
merged 9 commits into from Jul 4, 2023
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
@@ -0,0 +1,27 @@
diff --git a/lib/options.js b/lib/options.js
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can remove this patch once @babel/helper-compilation-targets is published and @babel/helper-define-polyfill-provider updates its dependency.

index 0ec76e1e3d2860aa800789d42d2ab1d6bd6e1c4d..71c949b356a266257c14d94a49a35d721cab7b55 100644
--- a/lib/options.js
+++ b/lib/options.js
@@ -17,7 +17,8 @@ const TargetNames = {
android: "android",
electron: "electron",
samsung: "samsung",
- rhino: "rhino"
+ rhino: "rhino",
+ opera_mobile: "opera_mobile"
};
exports.TargetNames = TargetNames;

diff --git a/lib/targets.js b/lib/targets.js
index 316e4cc1d78350e70c718bc24dbaa48048b708b6..6c4f68311441709f355cff282453c469f0f8b86e 100644
--- a/lib/targets.js
+++ b/lib/targets.js
@@ -20,7 +20,7 @@ const browserNameMap = {
ios_saf: "ios",
node: "node",
deno: "deno",
- op_mob: "opera",
+ op_mob: "opera_mobile",
opera: "opera",
safari: "safari",
samsung: "samsung"
10 changes: 8 additions & 2 deletions package.json
Expand Up @@ -88,7 +88,7 @@
"benchmark"
],
"resolutions": {
"browserslist": "npm:4.21.5",
"browserslist": "npm:4.21.9",
"caniuse-lite": "npm:1.0.30001508",
"core-js-compat": "npm:3.31.0",
"electron-to-chromium": "npm:1.4.441",
Expand All @@ -97,7 +97,13 @@
"@types/babel__traverse": "link:./nope",
"@babel/parser/@babel/types": "workspace:*",
"@babel/plugin-syntax-unicode-sets-regex/@babel/helper-create-regexp-features-plugin": "workspace:*",
"babel-plugin-polyfill-corejs2/@babel/compat-data": "workspace:*"
"babel-plugin-polyfill-corejs2/@babel/compat-data": "workspace:*",
"@babel/helper-compilation-targets@^7.17.7": "patch:@babel/helper-compilation-targets@npm%3A7.22.5#./.yarn/patches/@babel-helper-compilation-targets-npm-7.22.5-5e6d9af186.patch",
"@babel/helper-compilation-targets@^7.18.2": "patch:@babel/helper-compilation-targets@npm%3A7.22.5#./.yarn/patches/@babel-helper-compilation-targets-npm-7.22.5-5e6d9af186.patch",
"@babel/helper-compilation-targets@^7.21.5": "patch:@babel/helper-compilation-targets@npm%3A7.22.5#./.yarn/patches/@babel-helper-compilation-targets-npm-7.22.5-5e6d9af186.patch",
"@babel/helper-compilation-targets@^7.22.1": "patch:@babel/helper-compilation-targets@npm%3A7.22.5#./.yarn/patches/@babel-helper-compilation-targets-npm-7.22.5-5e6d9af186.patch",
"@babel/helper-compilation-targets@^7.18.9": "patch:@babel/helper-compilation-targets@npm%3A7.22.5#./.yarn/patches/@babel-helper-compilation-targets-npm-7.22.5-5e6d9af186.patch",
"@babel/helper-compilation-targets@^7.20.7": "patch:@babel/helper-compilation-targets@npm%3A7.22.5#./.yarn/patches/@babel-helper-compilation-targets-npm-7.22.5-5e6d9af186.patch"
},
"engines": {
"yarn": ">=1.4.0"
Expand Down