Skip to content

Commit

Permalink
chore(deps): bump postcss from 8.4.24 to 8.4.31 (#303)
Browse files Browse the repository at this point in the history
* chore(deps): bump postcss from 8.4.24 to 8.4.31

Bumps [postcss](https://github.com/postcss/postcss) from 8.4.24 to 8.4.31.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.24...8.4.31)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix

* Create beige-ties-perform.md

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ota-meshi <[email protected]>
  • Loading branch information
dependabot[bot] and ota-meshi authored Oct 5, 2023
1 parent 22d2b7d commit c94f93c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .changeset/beige-ties-perform.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"eslint-plugin-vue-scoped-css": patch
---

fix(deps): bump postcss to 8.4.31
6 changes: 5 additions & 1 deletion lib/styles/parser/css-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,11 @@ function getESLintLineAndColumnFromPostCSSNode(
offsetLocation,
sourceLoc,
);
if (locName === "end") {
if (
locName === "end" &&
// The end location of the PostCSS root node has a different position than other nodes.
node.type !== "root"
) {
// End column is shifted by one.
return { line, column: column + 1 };
}
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"dependencies": {
"eslint-utils": "^3.0.0",
"lodash": "^4.17.21",
"postcss": "^8.4.6",
"postcss": "^8.4.31",
"postcss-safe-parser": "^6.0.0",
"postcss-scss": "^4.0.3",
"postcss-selector-parser": "^6.0.9",
Expand Down

0 comments on commit c94f93c

Please sign in to comment.