postcss-sort-media-queries 3.10.11 → 3.11.12
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 +7 -0
- package/package.json +85 -84
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.11.12] 2021-06-10
|
|
9
|
+
|
|
10
|
+
- Update **postcss** to [postcss/releases/tag/8.3.1](https://github.com/postcss/postcss/releases/tag/8.3.1)
|
|
11
|
+
- Fixed false positives `PostCSS does nothing` warning on `syntax` option.
|
|
12
|
+
- Update dev dependencies
|
|
13
|
+
- Fixed dependencies vulnerabilities
|
|
14
|
+
|
|
8
15
|
## [3.10.11] 2021-05-18
|
|
9
16
|
|
|
10
17
|
- Update **postcss** to [postcss/releases/tag/8.2.15](https://github.com/postcss/postcss/releases/tag/8.2.15)
|
package/package.json
CHANGED
|
@@ -1,84 +1,85 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "postcss-sort-media-queries",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "PostCSS plugin for combine and sort CSS media queries with mobile first or desktop first methods.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"postcss",
|
|
7
|
-
"css",
|
|
8
|
-
"postcss-plugin",
|
|
9
|
-
"sort",
|
|
10
|
-
"media-queries",
|
|
11
|
-
"mediaquery",
|
|
12
|
-
"mq",
|
|
13
|
-
"optimization"
|
|
14
|
-
],
|
|
15
|
-
"author": "Yunus Gaziev <yunusga@yandex.ru>",
|
|
16
|
-
"license": "MIT",
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "https://github.com/solversgroup/postcss-sort-media-queries.git"
|
|
20
|
-
},
|
|
21
|
-
"bugs": {
|
|
22
|
-
"url": "https://github.com/solversgroup/postcss-sort-media-queries/issues"
|
|
23
|
-
},
|
|
24
|
-
"homepage": "https://github.com/solversgroup/postcss-sort-media-queries",
|
|
25
|
-
"scripts": {
|
|
26
|
-
"test": "jest-ci --coverage && eslint-ci ."
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
"eslint
|
|
38
|
-
"eslint-
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"jest
|
|
42
|
-
"jest-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"postcss
|
|
46
|
-
"postcss-
|
|
47
|
-
"postcss-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "postcss-sort-media-queries",
|
|
3
|
+
"version": "3.11.12",
|
|
4
|
+
"description": "PostCSS plugin for combine and sort CSS media queries with mobile first or desktop first methods.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"postcss",
|
|
7
|
+
"css",
|
|
8
|
+
"postcss-plugin",
|
|
9
|
+
"sort",
|
|
10
|
+
"media-queries",
|
|
11
|
+
"mediaquery",
|
|
12
|
+
"mq",
|
|
13
|
+
"optimization"
|
|
14
|
+
],
|
|
15
|
+
"author": "Yunus Gaziev <yunusga@yandex.ru>",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/solversgroup/postcss-sort-media-queries.git"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/solversgroup/postcss-sort-media-queries/issues"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/solversgroup/postcss-sort-media-queries",
|
|
25
|
+
"scripts": {
|
|
26
|
+
"test": "jest-ci --coverage && eslint-ci .",
|
|
27
|
+
"refresh-deps": "rm -rf node_modules && rm package-lock.json && npm i"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=10.0.0"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"sort-css-media-queries": "1.5.4"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"autoprefixer": "^10.2.6",
|
|
37
|
+
"eslint": "^7.28.0",
|
|
38
|
+
"eslint-ci": "^1.0.0",
|
|
39
|
+
"eslint-plugin-jest": "^24.3.6",
|
|
40
|
+
"husky": "^6.0.0",
|
|
41
|
+
"jest": "^27.0.4",
|
|
42
|
+
"jest-ci": "^0.1.1",
|
|
43
|
+
"jest-cli": "^27.0.4",
|
|
44
|
+
"lint-staged": "^11.0.0",
|
|
45
|
+
"postcss": "^8.3.1",
|
|
46
|
+
"postcss-flexbugs-fixes": "^5.0.2",
|
|
47
|
+
"postcss-media-minmax": "^5.0.0",
|
|
48
|
+
"postcss-nested": "^5.0.5"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"postcss": "^8.3.1"
|
|
52
|
+
},
|
|
53
|
+
"husky": {
|
|
54
|
+
"hooks": {
|
|
55
|
+
"pre-commit": "lint-staged"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"lint-staged": {
|
|
59
|
+
"*.js": "eslint --fix"
|
|
60
|
+
},
|
|
61
|
+
"eslintConfig": {
|
|
62
|
+
"parserOptions": {
|
|
63
|
+
"ecmaVersion": 2017
|
|
64
|
+
},
|
|
65
|
+
"env": {
|
|
66
|
+
"node": true,
|
|
67
|
+
"es6": true
|
|
68
|
+
},
|
|
69
|
+
"extends": [
|
|
70
|
+
"eslint:recommended",
|
|
71
|
+
"plugin:jest/recommended"
|
|
72
|
+
],
|
|
73
|
+
"rules": {
|
|
74
|
+
"jest/expect-expect": "off"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"jest": {
|
|
78
|
+
"testEnvironment": "node",
|
|
79
|
+
"coverageThreshold": {
|
|
80
|
+
"global": {
|
|
81
|
+
"statements": 100
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|