linter-bundle 2.14.0 → 2.14.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 +11 -1
- package/lint.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.
|
|
9
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.14.1...HEAD)
|
|
10
|
+
|
|
11
|
+
## [2.14.1] - 2022.05.05
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- [general] Fixed empty warning for outdated `resolutions` in `package.json`
|
|
16
|
+
|
|
17
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.14.0...v2.14.1)
|
|
10
18
|
|
|
11
19
|
## [2.14.0] - 2022.05.05
|
|
12
20
|
|
|
@@ -23,6 +31,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
23
31
|
- [stylelint] In the deployment process, ensure that the used Stylelint options are valid
|
|
24
32
|
- [stylelint] Fix invalid configuration of [`declaration-property-max-values`](https://github.com/stylelint/stylelint/blob/main/lib/rules/declaration-property-max-values/README.md) rule
|
|
25
33
|
|
|
34
|
+
[Show all code changes](https://github.com/jens-duttke/linter-bundle/compare/v2.13.0...v2.14.0)
|
|
35
|
+
|
|
26
36
|
## [2.13.0] - 2022.04.25
|
|
27
37
|
|
|
28
38
|
### Changed
|
package/lint.js
CHANGED
|
@@ -29,7 +29,7 @@ void (async () => {
|
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
if (outdatedOverrides.resolutions.length > 0) {
|
|
32
|
-
process.stderr.write(`Outdated "resolutions" in package.json detected:\n- ${outdatedOverrides.
|
|
32
|
+
process.stderr.write(`Outdated "resolutions" in package.json detected:\n- ${outdatedOverrides.resolutions.map((dependency) => `${dependency.name}: ${dependency.configuredVersion} is configured, but ${dependency.expectedVersion} is expected`).join('\n- ')}\n\n`);
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
process.exitCode = 1;
|