-
-
Notifications
You must be signed in to change notification settings - Fork 604
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: browser versions older than Chrome 92, Edge 92, Firefox 91, and Opera 78 are no longer supported
- Loading branch information
Showing
76 changed files
with
45,508 additions
and
13,962 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[chrome] | ||
Chrome >= 92 | ||
Edge >= 92 | ||
Opera >= 78 | ||
|
||
[edge] | ||
Edge >= 92 | ||
|
||
[firefox] | ||
Firefox >= 91 | ||
FirefoxAndroid >= 91 | ||
|
||
[opera] | ||
Opera >= 78 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
.assets/ | ||
secrets.json | ||
/.assets/ | ||
/secrets.json | ||
|
||
node_modules/ | ||
artifacts/ | ||
dist/ | ||
/artifacts/ | ||
/dist/ | ||
|
||
web-ext-config.js | ||
/.vscode | ||
|
||
npm-debug.log | ||
yarn-debug.log | ||
yarn-error.log | ||
.yarn-integrity | ||
/web-ext-config.js | ||
|
||
report.json | ||
/npm-debug.log | ||
|
||
/report.json | ||
/report.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
12.18.4 | ||
18.12.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
package.json | ||
.travis.yml | ||
*.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
const path = require('node:path'); | ||
|
||
const corejsVersion = require(path.join( | ||
path.dirname(require.resolve('core-js')), | ||
'package.json' | ||
)).version; | ||
|
||
module.exports = function (api) { | ||
const presets = [ | ||
[ | ||
'@babel/env', | ||
{ | ||
modules: false, | ||
bugfixes: true, | ||
useBuiltIns: 'usage', | ||
corejs: {version: corejsVersion} | ||
} | ||
] | ||
]; | ||
|
||
const plugins = []; | ||
|
||
const ignore = [ | ||
new RegExp(`node_modules\\${path.sep}(?!(vueton|wesa)\\${path.sep}).*`) | ||
]; | ||
|
||
const parserOpts = {plugins: ['importAssertions']}; | ||
|
||
if (api.env('production')) { | ||
plugins.push('lodash'); | ||
} | ||
|
||
return {presets, plugins, ignore, parserOpts}; | ||
}; |
Oops, something went wrong.