postcss 8.4.3 → 8.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of postcss might be problematic. Click here for more details.

@@ -191,7 +191,9 @@ class MapGenerator {
191
191
  } else {
192
192
  this.map = new SourceMapGenerator({ file: this.outputFile() })
193
193
  this.map.addMapping({
194
- source: this.opts.from ? this.toUrl(this.opts.from) : '<no source>',
194
+ source: this.opts.from
195
+ ? this.toUrl(this.path(this.opts.from))
196
+ : '<no source>',
195
197
  generated: { line: 1, column: 0 },
196
198
  original: { line: 1, column: 0 }
197
199
  })
package/lib/processor.js CHANGED
@@ -7,7 +7,7 @@ let Root = require('./root')
7
7
 
8
8
  class Processor {
9
9
  constructor(plugins = []) {
10
- this.version = '8.4.3'
10
+ this.version = '8.4.4'
11
11
  this.plugins = this.normalize(plugins)
12
12
  }
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postcss",
3
- "version": "8.4.3",
3
+ "version": "8.4.4",
4
4
  "description": "Tool for transforming styles with JS plugins",
5
5
  "engines": {
6
6
  "node": "^10 || ^12 || >=14"