Socket
Socket
Sign inDemoInstall

postcss

Package Overview
Dependencies
3
Maintainers
1
Versions
252
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 8.3.5 to 8.3.6

8

lib/parser.js

@@ -555,3 +555,9 @@ 'use strict'

}
throw this.input.error('Missed semicolon', token[2])
// If the token is a word, e.g. `!important`, `red` or any other valid property's value.
// Then we need to return the colon after that word token. [3] is the "end" colon of that word.
// And because we need it after that one we do +1 to get the next one.
throw this.input.error(
'Missed semicolon',
token[0] === 'word' ? token[3] + 1 : token[2]
)
}

@@ -558,0 +564,0 @@ }

2

lib/processor.js

@@ -9,3 +9,3 @@ 'use strict'

constructor(plugins = []) {
this.version = '8.3.5'
this.version = '8.3.6'
this.plugins = this.normalize(plugins)

@@ -12,0 +12,0 @@ }

{
"name": "postcss",
"version": "8.3.5",
"version": "8.3.6",
"description": "Tool for transforming styles with JS plugins",

@@ -5,0 +5,0 @@ "engines": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc