browserslist 4.0.0 → 4.0.1
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 +2 -2
- package/package.json +5 -33
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
3
3
|
|
|
4
|
+
## 4.0.1
|
|
5
|
+
* Reduce npm package size.
|
|
6
|
+
* Fix docs.
|
|
7
|
+
|
|
4
8
|
## 4.0.0 “Erinaceus amurensis”
|
|
5
9
|
* Add `node X` and `maintained node versions` queries (by Pavel Vostrikov).
|
|
6
10
|
* Remove Node.js 4 support.
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Browserslist [![Cult Of Martians][cult-img]][cult]
|
|
2
2
|
|
|
3
|
-
<img
|
|
4
|
-
src="
|
|
3
|
+
<img width="120" height="120" alt="Browserslist logo by Anton Lovchikov"
|
|
4
|
+
src="http://browserslist.github.io/browserslist/logo.svg" align="right">
|
|
5
5
|
|
|
6
6
|
The config to share target browsers and Node.js versions between different
|
|
7
7
|
front-end tools. It is used in:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browserslist",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"caniuse",
|
|
@@ -11,42 +11,14 @@
|
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"repository": "browserslist/browserslist",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"caniuse-lite": "^1.0.
|
|
15
|
-
"electron-to-chromium": "^1.3.
|
|
14
|
+
"caniuse-lite": "^1.0.30000865",
|
|
15
|
+
"electron-to-chromium": "^1.3.52",
|
|
16
16
|
"node-releases": "^1.0.0-alpha.10"
|
|
17
17
|
},
|
|
18
18
|
"bin": "./cli.js",
|
|
19
|
-
"
|
|
20
|
-
"cross-spawn": "^6.0.5",
|
|
21
|
-
"eslint": "^5.0.1",
|
|
22
|
-
"eslint-ci": "^0.1.1",
|
|
23
|
-
"eslint-config-logux": "^23.0.2",
|
|
24
|
-
"eslint-config-standard": "^11.0.0",
|
|
25
|
-
"eslint-plugin-es5": "^1.3.1",
|
|
26
|
-
"eslint-plugin-import": "^2.13.0",
|
|
27
|
-
"eslint-plugin-jest": "^21.17.0",
|
|
28
|
-
"eslint-plugin-node": "^6.0.1",
|
|
29
|
-
"eslint-plugin-promise": "^3.8.0",
|
|
30
|
-
"eslint-plugin-security": "^1.4.0",
|
|
31
|
-
"eslint-plugin-standard": "^3.1.0",
|
|
32
|
-
"fs-extra": "^6.0.1",
|
|
33
|
-
"jest": "^23.2.0",
|
|
34
|
-
"lint-staged": "^7.2.0",
|
|
35
|
-
"pre-commit": "^1.1.3",
|
|
36
|
-
"size-limit": "^0.18.3",
|
|
37
|
-
"yaspeller-ci": "^1.0.0"
|
|
38
|
-
},
|
|
39
|
-
"scripts": {
|
|
40
|
-
"lint-staged": "lint-staged",
|
|
41
|
-
"spellcheck": "yaspeller-ci README.md CHANGELOG.md",
|
|
42
|
-
"lint": "eslint-ci *.js test/*.js benchmark/*.js",
|
|
43
|
-
"test": "jest --coverage && yarn lint && yarn spellcheck && size-limit"
|
|
44
|
-
},
|
|
19
|
+
"scripts": {},
|
|
45
20
|
"browser": {
|
|
46
21
|
"./node.js": "./browser.js",
|
|
47
22
|
"path": false
|
|
48
|
-
}
|
|
49
|
-
"pre-commit": [
|
|
50
|
-
"lint-staged"
|
|
51
|
-
]
|
|
23
|
+
}
|
|
52
24
|
}
|