Skip to content

Commit

Permalink
v16.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xt0rted committed Mar 28, 2024
1 parent 84f7ef4 commit 9a98608
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 22 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [16.2.1](https://github.com/xt0rted/stylelint-actions-formatters/compare/v16.2.0...v16.2.1) - 2024-03-28

- Synced code with [stylelint 16.2.1](https://github.com/stylelint/stylelint/releases/tag/16.2.1)

## [16.2.0](https://github.com/xt0rted/stylelint-actions-formatters/compare/v16.1.0...v16.2.0) - 2024-03-28

- Synced code with [stylelint 16.2.0](https://github.com/stylelint/stylelint/releases/tag/16.2.0)
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stylelint-actions-formatters",
"version": "16.2.0",
"version": "16.2.1",
"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": [
Expand Down Expand Up @@ -52,6 +52,6 @@
"jest": "^29.7.0"
},
"peerDependencies": {
"stylelint": "^16.2.0"
"stylelint": "^16.2.1"
}
}
2 changes: 1 addition & 1 deletion src/__tests__/getCleanOutput.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* https://github.com/stylelint/stylelint/blob/16.2.0/lib/testUtils/getCleanOutput.mjs
* https://github.com/stylelint/stylelint/blob/16.2.1/lib/testUtils/getCleanOutput.mjs
*/
import stripAnsi from 'strip-ansi';

Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/stringFormatter.test.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Based on https://github.com/stylelint/stylelint/blob/16.2.0/lib/formatters/__tests__/stringFormatter.test.mjs
* Based on https://github.com/stylelint/stylelint/blob/16.2.1/lib/formatters/__tests__/stringFormatter.test.mjs
*/
import process from 'node:process';

Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/verboseFormatter.test.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Based on https://github.com/stylelint/stylelint/blob/16.2.0/lib/formatters/__tests__/verboseFormatter.test.mjs
* Based on https://github.com/stylelint/stylelint/blob/16.2.1/lib/formatters/__tests__/verboseFormatter.test.mjs
*/
import process from 'node:process';

Expand Down
2 changes: 1 addition & 1 deletion src/calcSeverityCounts.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* https://github.com/stylelint/stylelint/blob/16.2.0/lib/formatters/calcSeverityCounts.mjs
* https://github.com/stylelint/stylelint/blob/16.2.1/lib/formatters/calcSeverityCounts.mjs
*/
/**
* @typedef {import('stylelint').Severity} Severity
Expand Down
2 changes: 1 addition & 1 deletion src/pluralize.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* https://github.com/stylelint/stylelint/blob/16.2.0/lib/utils/pluralize.mjs
* https://github.com/stylelint/stylelint/blob/16.2.1/lib/utils/pluralize.mjs
*/
/**
* Returns the plural form of the given word.
Expand Down
2 changes: 1 addition & 1 deletion src/preprocessWarnings.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* https://github.com/stylelint/stylelint/blob/16.2.0/lib/formatters/preprocessWarnings.mjs
* https://github.com/stylelint/stylelint/blob/16.2.1/lib/formatters/preprocessWarnings.mjs
*/
/** @typedef {import('stylelint').LintResult} LintResult */
/** @typedef {LintResult['parseErrors'][0]} ParseError */
Expand Down
2 changes: 1 addition & 1 deletion src/stringFormatter.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* https://github.com/stylelint/stylelint/blob/16.2.0/lib/formatters/stringFormatter.mjs
* https://github.com/stylelint/stylelint/blob/16.2.1/lib/formatters/stringFormatter.mjs
*/
import { relative, sep } from 'node:path';
import process from 'node:process';
Expand Down
2 changes: 1 addition & 1 deletion src/terminalLink.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* https://github.com/stylelint/stylelint/blob/16.2.0/lib/formatters/terminalLink.mjs
* https://github.com/stylelint/stylelint/blob/16.2.1/lib/formatters/terminalLink.mjs
*/
import supportsHyperlinks from 'supports-hyperlinks';

Expand Down
2 changes: 1 addition & 1 deletion src/validateTypes.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* https://github.com/stylelint/stylelint/blob/16.2.0/lib/utils/validateTypes.mjs
* https://github.com/stylelint/stylelint/blob/16.2.1/lib/utils/validateTypes.mjs
*/
import { isPlainObject as _isPlainObject } from 'is-plain-object';

Expand Down
2 changes: 1 addition & 1 deletion src/verboseFormatter.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* https://github.com/stylelint/stylelint/blob/16.2.0/lib/formatters/verboseFormatter.mjs
* https://github.com/stylelint/stylelint/blob/16.2.1/lib/formatters/verboseFormatter.mjs
*/
import picocolors from 'picocolors';
const { underline, red, yellow, dim, green } = picocolors;
Expand Down
2 changes: 1 addition & 1 deletion test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"test": "stylelint *.css --no-color --custom-formatter=../src/stringFormatter.mjs & exit 0"
},
"devDependencies": {
"stylelint": "16.2.0"
"stylelint": "16.2.1"
}
}

0 comments on commit 9a98608

Please sign in to comment.