postcss-sort-media-queries 3.7.7 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/package.json +85 -81
package/CHANGELOG.md CHANGED
@@ -5,6 +5,35 @@ 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
+
15
+ ## [3.10.11] 2021-05-18
16
+
17
+ - Update **postcss** to [postcss/releases/tag/8.2.15](https://github.com/postcss/postcss/releases/tag/8.2.15)
18
+ - Fixed `list` type definitions
19
+ - Update dev dependencies
20
+ - Fixed dependencies vulnerabilities
21
+
22
+ ## [3.9.10] 2021-05-03
23
+
24
+ - Update **postcss** to [postcss/releases/tag/8.2.13](https://github.com/postcss/postcss/releases/tag/8.2.13)
25
+ - Fixed ReDoS vulnerabilities in source map parsing
26
+ - Update dev dependencies
27
+ - Added tests with media-minmax and flexbugs-fixes
28
+
29
+ ## [3.8.9] 2021-04-12
30
+
31
+ - Update **postcss** to [postcss/releases/tag/8.2.10](https://github.com/postcss/postcss/releases/tag/8.2.10)
32
+ - Fixed ReDoS vulnerabilities in source map parsing
33
+ - Fixed webpack 5 support
34
+ - Fixed docs
35
+ - Update dev dependencies
36
+
8
37
  ## [3.7.7] 2021-02-11
9
38
 
10
39
  - Update **postcss** to [postcss/releases/tag/8.2.9](https://github.com/postcss/postcss/releases/tag/8.2.9)
package/package.json CHANGED
@@ -1,81 +1,85 @@
1
- {
2
- "name": "postcss-sort-media-queries",
3
- "version": "3.7.7",
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
- "engines": {
29
- "node": ">=10.0.0"
30
- },
31
- "dependencies": {
32
- "sort-css-media-queries": "1.5.4"
33
- },
34
- "devDependencies": {
35
- "eslint": "^7.23.0",
36
- "eslint-ci": "^1.0.0",
37
- "eslint-plugin-jest": "^24.3.2",
38
- "husky": "^6.0.0",
39
- "jest": "^26.6.3",
40
- "jest-ci": "^0.1.1",
41
- "jest-cli": "^26.6.3",
42
- "lint-staged": "^10.5.4",
43
- "postcss": "^8.2.9",
44
- "postcss-nested": "^5.0.5"
45
- },
46
- "peerDependencies": {
47
- "postcss": "^8.2.9"
48
- },
49
- "husky": {
50
- "hooks": {
51
- "pre-commit": "lint-staged"
52
- }
53
- },
54
- "lint-staged": {
55
- "*.js": "eslint --fix"
56
- },
57
- "eslintConfig": {
58
- "parserOptions": {
59
- "ecmaVersion": 2017
60
- },
61
- "env": {
62
- "node": true,
63
- "es6": true
64
- },
65
- "extends": [
66
- "eslint:recommended",
67
- "plugin:jest/recommended"
68
- ],
69
- "rules": {
70
- "jest/expect-expect": "off"
71
- }
72
- },
73
- "jest": {
74
- "testEnvironment": "node",
75
- "coverageThreshold": {
76
- "global": {
77
- "statements": 100
78
- }
79
- }
80
- }
81
- }
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
+ }