browserslist 3.2.5 → 3.2.6
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/CHANGELOG.md +4 -0
- package/README.md +38 -19
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ when you add the following to `package.json`:
|
|
|
22
22
|
{
|
|
23
23
|
"browserslist": [
|
|
24
24
|
"> 1%",
|
|
25
|
-
"
|
|
25
|
+
"IE 10"
|
|
26
26
|
]
|
|
27
27
|
}
|
|
28
28
|
```
|
|
@@ -33,7 +33,6 @@ Or in `.browserslistrc` config:
|
|
|
33
33
|
# Browsers that we support
|
|
34
34
|
|
|
35
35
|
> 1%
|
|
36
|
-
Last 2 versions
|
|
37
36
|
IE 10 # sorry
|
|
38
37
|
```
|
|
39
38
|
|
|
@@ -95,10 +94,27 @@ Browserslist will use browsers query from one of this sources:
|
|
|
95
94
|
Browserslist will use defaults:
|
|
96
95
|
`> 0.5%, last 2 versions, Firefox ESR, not dead`.
|
|
97
96
|
|
|
97
|
+
|
|
98
|
+
### Best Practices
|
|
99
|
+
|
|
100
|
+
* We do not recommend to changing the default set of browsers unless you
|
|
101
|
+
know what are you doing. Browserslist’s default browsers selection is a
|
|
102
|
+
result of many long discussions. It is easy to make mistake selecting own
|
|
103
|
+
browsers without understanding what are you doing (like accidentally making
|
|
104
|
+
your website inaccessible for Chinese users).
|
|
105
|
+
* Select browsers directly (`last 2 Chrome versions`) only if you are making
|
|
106
|
+
web app for kiosk with one browser. There are a lot browsers on the market.
|
|
107
|
+
If you are making general web app you should respect browsers diversity.
|
|
108
|
+
* If you want to change the default set of browsers we recommend `> 0.2%`,
|
|
109
|
+
`> 1% in US` or `> 1% in my stats`. `last 2 versions` will add too many
|
|
110
|
+
dead browsers and will not add many popular versions. If you require last
|
|
111
|
+
2 versions support, set `last 2 versions, > 1% in my stats, not dead`.
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
### Full List
|
|
115
|
+
|
|
98
116
|
You can specify the versions by queries (case insensitive):
|
|
99
117
|
|
|
100
|
-
* `last 2 versions`: the last 2 versions for each browser.
|
|
101
|
-
* `last 2 Chrome versions`: the last 2 versions of Chrome browser.
|
|
102
118
|
* `> 5%`: versions selected by global usage statistics.
|
|
103
119
|
`>=`, `<` and `<=` work too.
|
|
104
120
|
* `> 5% in US`: uses USA usage statistics. It accepts [two-letter country code].
|
|
@@ -124,7 +140,9 @@ You can specify the versions by queries (case insensitive):
|
|
|
124
140
|
* `dead`: browsers from `last 2 version` query, but with less than 0.5%
|
|
125
141
|
in global usage statistics and without official support or updates
|
|
126
142
|
for 24 months. Right now it is `IE 10`, `IE_Mob 10`, `BlackBerry 10`,
|
|
127
|
-
and `
|
|
143
|
+
`BlackBerry 7`, and `OperaMobile 12.1`.
|
|
144
|
+
* `last 2 versions`: the last 2 versions for *each* browser.
|
|
145
|
+
* `last 2 Chrome versions`: the last 2 versions of Chrome browser.
|
|
128
146
|
* `defaults`: Browserslist’s default browsers
|
|
129
147
|
(`> 0.5%, last 2 versions, Firefox ESR, not dead`).
|
|
130
148
|
* `not ie <= 8`: exclude browsers selected by previous queries.
|
|
@@ -212,7 +230,7 @@ browsers in `package.json` with `browserslist` key:
|
|
|
212
230
|
},
|
|
213
231
|
"browserslist": [
|
|
214
232
|
"> 1%",
|
|
215
|
-
"
|
|
233
|
+
"IE 10"
|
|
216
234
|
]
|
|
217
235
|
}
|
|
218
236
|
```
|
|
@@ -227,8 +245,7 @@ and have browsers queries split by a new line. Comments starts with `#` symb
|
|
|
227
245
|
# Browsers that we support
|
|
228
246
|
|
|
229
247
|
> 1%
|
|
230
|
-
|
|
231
|
-
IE 8 # sorry
|
|
248
|
+
IE 10 # sorry
|
|
232
249
|
```
|
|
233
250
|
|
|
234
251
|
Browserslist will check config in every directory in `path`.
|
|
@@ -276,8 +293,8 @@ When writing a shared Browserslist package, just export an array.
|
|
|
276
293
|
|
|
277
294
|
```js
|
|
278
295
|
module.exports = [
|
|
279
|
-
'
|
|
280
|
-
'ie
|
|
296
|
+
'> 1%',
|
|
297
|
+
'ie 10'
|
|
281
298
|
]
|
|
282
299
|
```
|
|
283
300
|
|
|
@@ -333,11 +350,12 @@ In `package.json`:
|
|
|
333
350
|
```js
|
|
334
351
|
"browserslist": {
|
|
335
352
|
"production": [
|
|
336
|
-
"
|
|
337
|
-
"ie
|
|
353
|
+
"> 1%",
|
|
354
|
+
"ie 10"
|
|
338
355
|
],
|
|
339
356
|
"development": [
|
|
340
|
-
"last 1 version"
|
|
357
|
+
"last 1 chrome version",
|
|
358
|
+
"last 1 firefox version"
|
|
341
359
|
]
|
|
342
360
|
}
|
|
343
361
|
```
|
|
@@ -346,11 +364,12 @@ In `.browserslistrc` config:
|
|
|
346
364
|
|
|
347
365
|
```ini
|
|
348
366
|
[production staging]
|
|
349
|
-
|
|
350
|
-
ie
|
|
367
|
+
> 1%
|
|
368
|
+
ie 10
|
|
351
369
|
|
|
352
370
|
[development]
|
|
353
|
-
last 1 version
|
|
371
|
+
last 1 chrome version
|
|
372
|
+
last 1 firefox version
|
|
354
373
|
```
|
|
355
374
|
|
|
356
375
|
|
|
@@ -405,8 +424,8 @@ var process = function (source, opts) {
|
|
|
405
424
|
}
|
|
406
425
|
```
|
|
407
426
|
|
|
408
|
-
Queries can be a string `">
|
|
409
|
-
or an array `['>
|
|
427
|
+
Queries can be a string `"> 1%, IE 10"`
|
|
428
|
+
or an array `['> 1%', 'IE 10']`.
|
|
410
429
|
|
|
411
430
|
If a query is missing, Browserslist will look for a config file.
|
|
412
431
|
You can provide a `path` option (that can be a file) to find the config file
|
|
@@ -426,7 +445,7 @@ Options:
|
|
|
426
445
|
For non-JS environment and debug purpose you can use CLI tool:
|
|
427
446
|
|
|
428
447
|
```sh
|
|
429
|
-
browserslist "> 1%,
|
|
448
|
+
browserslist "> 1%, IE 10"
|
|
430
449
|
```
|
|
431
450
|
|
|
432
451
|
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browserslist",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.6",
|
|
4
4
|
"description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"caniuse",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"eslint-plugin-node": "^6.0.1",
|
|
28
28
|
"eslint-plugin-promise": "^3.7.0",
|
|
29
29
|
"eslint-plugin-security": "^1.4.0",
|
|
30
|
-
"eslint-plugin-standard": "^3.0
|
|
30
|
+
"eslint-plugin-standard": "^3.1.0",
|
|
31
31
|
"fs-extra": "^5.0.0",
|
|
32
32
|
"jest": "^22.4.3",
|
|
33
33
|
"lint-staged": "^7.0.4",
|