Socket
Socket
Sign inDemoInstall

postcss-url

Package Overview
Dependencies
Maintainers
2
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-url - npm Package Compare versions

Comparing version 6.0.0 to 6.0.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

# 6.0.1 - 2017-04-03
- Fixed: bug with empty options
([#87](https://github.com/postcss/postcss-url/issues/87))
# 6.0.0 - 2017-04-02

@@ -2,0 +6,0 @@

2

package.json
{
"name": "postcss-url",
"version": "6.0.0",
"version": "6.0.1",
"description": "PostCSS plugin to rebase or inline on url().",

@@ -5,0 +5,0 @@ "keywords": [

@@ -105,4 +105,6 @@ 'use strict';

*/
module.exports = postcss.plugin('postcss-url', (options) =>
function(styles, result) {
module.exports = postcss.plugin('postcss-url', (options) => {
options = options || {};
return function(styles, result) {
const opts = result.opts;

@@ -118,3 +120,3 @@ const from = opts.from ? path.dirname(opts.from) : '.';

}
);
});

@@ -121,0 +123,0 @@ /**

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc