postcss-scss
Advanced tools
Comparing version 4.0.7 to 4.0.8
@@ -31,3 +31,7 @@ let { Comment } = require('postcss') | ||
let pos = this.input.fromOffset(token[3]) | ||
node.source.end = { column: pos.col, line: pos.line, offset: token[3] } | ||
node.source.end = { | ||
column: pos.col, | ||
line: pos.line, | ||
offset: token[3] + 1 | ||
} | ||
@@ -110,6 +114,14 @@ let text = token[1].slice(2) | ||
let pos = this.input.fromOffset(last[3]) | ||
node.source.end = { column: pos.col, line: pos.line, offset: last[3] } | ||
node.source.end = { | ||
column: pos.col, | ||
line: pos.line, | ||
offset: last[3] + 1 | ||
} | ||
} else { | ||
let pos = this.input.fromOffset(last[2]) | ||
node.source.end = { column: pos.col, line: pos.line, offset: last[2] } | ||
node.source.end = { | ||
column: pos.col, | ||
line: pos.line, | ||
offset: last[2] + 1 | ||
} | ||
} | ||
@@ -116,0 +128,0 @@ |
{ | ||
"name": "postcss-scss", | ||
"version": "4.0.7", | ||
"version": "4.0.8", | ||
"description": "SCSS parser for PostCSS", | ||
@@ -50,4 +50,4 @@ "keywords": [ | ||
"peerDependencies": { | ||
"postcss": "^8.4.19" | ||
"postcss": "^8.4.29" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19439
554