diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e1a07d..3f1c7a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [16.0.2](https://github.com/xt0rted/stylelint-actions-formatters/compare/v16.0.1...v16.0.2) - 2024-03-28 + +- Synced code with [stylelint 16.0.2](https://github.com/stylelint/stylelint/releases/tag/16.0.2) + ## [16.0.1](https://github.com/xt0rted/stylelint-actions-formatters/compare/v16.0.0...v16.0.1) - 2024-03-28 - Synced code with [stylelint 16.0.1](https://github.com/stylelint/stylelint/releases/tag/16.0.1) diff --git a/package-lock.json b/package-lock.json index f4fd049..5566bb0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "stylelint-actions-formatters", - "version": "16.0.1", + "version": "16.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "stylelint-actions-formatters", - "version": "16.0.1", + "version": "16.0.2", "license": "MIT", "dependencies": { "is-plain-object": "^5.0.0", @@ -24,7 +24,7 @@ "url": "https://github.com/sponsors/xt0rted" }, "peerDependencies": { - "stylelint": "^16.0.1" + "stylelint": "^16.0.2" } }, "node_modules/@ampproject/remapping": { @@ -4116,9 +4116,9 @@ } }, "node_modules/stylelint": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.0.1.tgz", - "integrity": "sha512-nPO7f7JBxX0gPwdQs1fBQL+b0PabHykxSQ9HtpobbtV7pe2lb/nmlqxKepPUwHJTi9P9iu+Hkwt1mdmOnkkTVw==", + "version": "16.0.2", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.0.2.tgz", + "integrity": "sha512-SxA/rg3VWxdoHZlW0nmVueWO1E7TAKW4W6mmA3iTxxEF9bIeQdFZu2oiBlQYyNe1pGnOamOqo2XYnI7cs5Bgow==", "peer": true, "dependencies": { "@csstools/css-parser-algorithms": "^2.3.2", @@ -7505,9 +7505,9 @@ "dev": true }, "stylelint": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.0.1.tgz", - "integrity": "sha512-nPO7f7JBxX0gPwdQs1fBQL+b0PabHykxSQ9HtpobbtV7pe2lb/nmlqxKepPUwHJTi9P9iu+Hkwt1mdmOnkkTVw==", + "version": "16.0.2", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.0.2.tgz", + "integrity": "sha512-SxA/rg3VWxdoHZlW0nmVueWO1E7TAKW4W6mmA3iTxxEF9bIeQdFZu2oiBlQYyNe1pGnOamOqo2XYnI7cs5Bgow==", "peer": true, "requires": { "@csstools/css-parser-algorithms": "^2.3.2", diff --git a/package.json b/package.json index 27bda36..1143c00 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stylelint-actions-formatters", - "version": "16.0.1", + "version": "16.0.2", "description": "These are copies of the built-in formatters with modified file paths so that Checks Annotations can be created on GitHub Actions.\r This package should be used with the `xt0rted/stylelint-problem-matcher` action.", "main": "src/stringFormatter.mjs", "files": [ @@ -14,7 +14,7 @@ "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "update": "npm run update:changelog && npm run update:code && npm run verify:dependencies", "update:changelog": "node --no-warnings=ExperimentalWarning ./scripts/changelog.mjs", - "update:code": "node ./scripts/download.mjs", + "update:code": "node --no-warnings=ExperimentalWarning ./scripts/download.mjs", "update:snapshots": "node --experimental-vm-modules node_modules/jest/bin/jest.js --updateSnapshot", "update:version": "npm --no-git-tag-version version", "verify:dependencies": "node --no-warnings=ExperimentalWarning ./scripts/dependencies.mjs" @@ -52,6 +52,6 @@ "jest": "^29.7.0" }, "peerDependencies": { - "stylelint": "^16.0.1" + "stylelint": "^16.0.2" } } diff --git a/src/__tests__/getCleanOutput.mjs b/src/__tests__/getCleanOutput.mjs index 5a466b0..dd72e53 100644 --- a/src/__tests__/getCleanOutput.mjs +++ b/src/__tests__/getCleanOutput.mjs @@ -1,5 +1,5 @@ /** - * https://github.com/stylelint/stylelint/blob/16.0.1/lib/testUtils/getCleanOutput.mjs + * https://github.com/stylelint/stylelint/blob/16.0.2/lib/testUtils/getCleanOutput.mjs */ import stripAnsi from 'strip-ansi'; diff --git a/src/__tests__/stringFormatter.test.mjs b/src/__tests__/stringFormatter.test.mjs index ba20e09..5f59287 100644 --- a/src/__tests__/stringFormatter.test.mjs +++ b/src/__tests__/stringFormatter.test.mjs @@ -1,5 +1,5 @@ /** - * Based on https://github.com/stylelint/stylelint/blob/16.0.1/lib/formatters/__tests__/stringFormatter.test.mjs + * Based on https://github.com/stylelint/stylelint/blob/16.0.2/lib/formatters/__tests__/stringFormatter.test.mjs */ import process from 'node:process'; diff --git a/src/__tests__/verboseFormatter.test.mjs b/src/__tests__/verboseFormatter.test.mjs index 7a33c14..922741f 100644 --- a/src/__tests__/verboseFormatter.test.mjs +++ b/src/__tests__/verboseFormatter.test.mjs @@ -1,5 +1,5 @@ /** - * Based on https://github.com/stylelint/stylelint/blob/16.0.1/lib/formatters/__tests__/verboseFormatter.test.mjs + * Based on https://github.com/stylelint/stylelint/blob/16.0.2/lib/formatters/__tests__/verboseFormatter.test.mjs */ import process from 'node:process'; diff --git a/src/calcSeverityCounts.mjs b/src/calcSeverityCounts.mjs index 1d350a9..961374e 100644 --- a/src/calcSeverityCounts.mjs +++ b/src/calcSeverityCounts.mjs @@ -1,5 +1,5 @@ /** - * https://github.com/stylelint/stylelint/blob/16.0.1/lib/formatters/calcSeverityCounts.mjs + * https://github.com/stylelint/stylelint/blob/16.0.2/lib/formatters/calcSeverityCounts.mjs */ /** * @typedef {import('stylelint').Severity} Severity diff --git a/src/pluralize.mjs b/src/pluralize.mjs index 1b84b7c..8a5a2f7 100644 --- a/src/pluralize.mjs +++ b/src/pluralize.mjs @@ -1,5 +1,5 @@ /** - * https://github.com/stylelint/stylelint/blob/16.0.1/lib/utils/pluralize.mjs + * https://github.com/stylelint/stylelint/blob/16.0.2/lib/utils/pluralize.mjs */ /** * Returns the plural form of the given word. diff --git a/src/preprocessWarnings.mjs b/src/preprocessWarnings.mjs index 48b1490..dc38bc3 100644 --- a/src/preprocessWarnings.mjs +++ b/src/preprocessWarnings.mjs @@ -1,5 +1,5 @@ /** - * https://github.com/stylelint/stylelint/blob/16.0.1/lib/formatters/preprocessWarnings.mjs + * https://github.com/stylelint/stylelint/blob/16.0.2/lib/formatters/preprocessWarnings.mjs */ /** @typedef {import('stylelint').LintResult} LintResult */ /** @typedef {LintResult['parseErrors'][0]} ParseError */ diff --git a/src/stringFormatter.mjs b/src/stringFormatter.mjs index 077a04a..13ad803 100644 --- a/src/stringFormatter.mjs +++ b/src/stringFormatter.mjs @@ -1,5 +1,5 @@ /** - * https://github.com/stylelint/stylelint/blob/16.0.1/lib/formatters/stringFormatter.mjs + * https://github.com/stylelint/stylelint/blob/16.0.2/lib/formatters/stringFormatter.mjs */ import { relative, sep } from 'node:path'; import process from 'node:process'; diff --git a/src/terminalLink.mjs b/src/terminalLink.mjs index 2472028..cc8ea42 100644 --- a/src/terminalLink.mjs +++ b/src/terminalLink.mjs @@ -1,5 +1,5 @@ /** - * https://github.com/stylelint/stylelint/blob/16.0.1/lib/formatters/terminalLink.mjs + * https://github.com/stylelint/stylelint/blob/16.0.2/lib/formatters/terminalLink.mjs */ import supportsHyperlinks from 'supports-hyperlinks'; diff --git a/src/validateTypes.mjs b/src/validateTypes.mjs index 38a0c80..0b48db2 100644 --- a/src/validateTypes.mjs +++ b/src/validateTypes.mjs @@ -1,5 +1,5 @@ /** - * https://github.com/stylelint/stylelint/blob/16.0.1/lib/utils/validateTypes.mjs + * https://github.com/stylelint/stylelint/blob/16.0.2/lib/utils/validateTypes.mjs */ import { isPlainObject as _isPlainObject } from 'is-plain-object'; diff --git a/src/verboseFormatter.mjs b/src/verboseFormatter.mjs index 4687900..3d84524 100644 --- a/src/verboseFormatter.mjs +++ b/src/verboseFormatter.mjs @@ -1,5 +1,5 @@ /** - * https://github.com/stylelint/stylelint/blob/16.0.1/lib/formatters/verboseFormatter.mjs + * https://github.com/stylelint/stylelint/blob/16.0.2/lib/formatters/verboseFormatter.mjs */ import picocolors from 'picocolors'; const { underline, red, yellow, dim, green } = picocolors;