🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

postcss-scss

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-scss - npm Package Compare versions

Comparing version

to
4.0.8

18

lib/scss-parser.js

@@ -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 @@

4

package.json
{
"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"
}
}