browserslist 4.21.9 → 4.21.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/cli.js +6 -1
  2. package/index.js +1 -1
  3. package/package.json +5 -5
package/cli.js CHANGED
@@ -38,7 +38,12 @@ if (isArg('--help') || isArg('-h')) {
38
38
  } else if (isArg('--version') || isArg('-v')) {
39
39
  process.stdout.write('browserslist ' + pkg.version + '\n')
40
40
  } else if (isArg('--update-db')) {
41
- /* c8 ignore next 3 */
41
+ /* c8 ignore next 8 */
42
+ process.stdout.write(
43
+ 'The --update-db command is deprecated.\n' +
44
+ 'Please use npx update-browserslist-db@latest instead.\n'
45
+ )
46
+ process.stdout.write('Browserslist DB update will still be made.\n')
42
47
  updateDb(function (str) {
43
48
  process.stdout.write(str)
44
49
  })
package/index.js CHANGED
@@ -1001,7 +1001,7 @@ var QUERIES = {
1001
1001
  matches: [],
1002
1002
  regexp: /^(firefox|ff|fx)\s+esr$/i,
1003
1003
  select: function () {
1004
- return ['firefox 102']
1004
+ return ['firefox 102', 'firefox 115']
1005
1005
  }
1006
1006
  },
1007
1007
  opera_mini_all: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserslist",
3
- "version": "4.21.9",
3
+ "version": "4.21.11",
4
4
  "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
5
5
  "keywords": [
6
6
  "caniuse",
@@ -25,10 +25,10 @@
25
25
  "license": "MIT",
26
26
  "repository": "browserslist/browserslist",
27
27
  "dependencies": {
28
- "caniuse-lite": "^1.0.30001503",
29
- "electron-to-chromium": "^1.4.431",
30
- "node-releases": "^2.0.12",
31
- "update-browserslist-db": "^1.0.11"
28
+ "caniuse-lite": "^1.0.30001538",
29
+ "electron-to-chromium": "^1.4.526",
30
+ "node-releases": "^2.0.13",
31
+ "update-browserslist-db": "^1.0.13"
32
32
  },
33
33
  "engines": {
34
34
  "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"