@readme/stylelint-config 6.0.7 → 6.0.8

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 CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.0.8](https://github.com/readmeio/standards/compare/@readme/stylelint-config@6.0.7...@readme/stylelint-config@6.0.8) (2024-02-16)
7
+
8
+ **Note:** Version bump only for package @readme/stylelint-config
9
+
10
+
11
+
12
+
13
+
6
14
  ## [6.0.7](https://github.com/readmeio/standards/compare/@readme/stylelint-config@6.0.6...@readme/stylelint-config@6.0.7) (2024-01-01)
7
15
 
8
16
 
@@ -42,7 +42,7 @@ describe('stylelint-config', () => {
42
42
  });
43
43
 
44
44
  it('matches the auto-fixed snapshot', () => {
45
- expect(data.output).toMatchSnapshot();
45
+ expect(data.code).toMatchSnapshot();
46
46
  });
47
47
 
48
48
  it('has errors', () => {
@@ -81,7 +81,7 @@ describe('stylelint-config', () => {
81
81
  });
82
82
 
83
83
  it('auto-fixes "selector-not-notation" to "simple" pattern', () => {
84
- expect(data.output).toContain('&:not(.one):not(.two):not(.three)');
84
+ expect(data.code).toContain('&:not(.one):not(.two):not(.three)');
85
85
  });
86
86
  });
87
87
 
@@ -95,7 +95,7 @@ $prettier: "should be single quotes";
95
95
  fix: true,
96
96
  });
97
97
  ({ warnings } = data.results[0]);
98
- expect(data.output).toMatchSnapshot();
98
+ expect(data.code).toMatchSnapshot();
99
99
  });
100
100
 
101
101
  it('flags double quotes as an error', async () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readme/stylelint-config",
3
- "version": "6.0.7",
3
+ "version": "6.0.8",
4
4
  "description": "ReadMe coding standards for styles",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -21,21 +21,21 @@
21
21
  },
22
22
  "homepage": "https://github.com/readmeio/standards",
23
23
  "dependencies": {
24
- "stylelint": "^15.10.3",
24
+ "stylelint": "^16.2.1",
25
25
  "stylelint-config-css-modules": "^4.3.0",
26
- "stylelint-config-sass-guidelines": "^10.0.0",
27
- "stylelint-config-standard": "^34.0.0",
28
- "stylelint-config-standard-scss": "^11.0.0",
26
+ "stylelint-config-sass-guidelines": "^11.0.0",
27
+ "stylelint-config-standard": "^36.0.0",
28
+ "stylelint-config-standard-scss": "^13.0.0",
29
29
  "stylelint-order": "^6.0.3",
30
- "stylelint-prettier": "^4.0.2"
30
+ "stylelint-prettier": "^5.0.0"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "postcss": "^8.4.12"
34
34
  },
35
35
  "devDependencies": {
36
- "@readme/eslint-config": "^13.4.1",
36
+ "@readme/eslint-config": "^13.5.0",
37
37
  "vitest": "^1.1.1"
38
38
  },
39
39
  "prettier": "@readme/eslint-config/prettier",
40
- "gitHead": "7c9c37a27fb753958716043f668324a3110576d9"
40
+ "gitHead": "90fc3d495f84370d35dd0e3263e2e7e28ac19937"
41
41
  }