browserslist 4.21.10 → 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.
- package/cli.js +6 -1
- package/package.json +4 -4
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
|
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browserslist",
|
|
3
|
-
"version": "4.21.
|
|
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.
|
|
29
|
-
"electron-to-chromium": "^1.4.
|
|
28
|
+
"caniuse-lite": "^1.0.30001538",
|
|
29
|
+
"electron-to-chromium": "^1.4.526",
|
|
30
30
|
"node-releases": "^2.0.13",
|
|
31
|
-
"update-browserslist-db": "^1.0.
|
|
31
|
+
"update-browserslist-db": "^1.0.13"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|