Socket
Socket
Sign inDemoInstall

uglifycss

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uglifycss - npm Package Compare versions

Comparing version 0.0.23 to 0.0.24

2

package.json

@@ -5,3 +5,3 @@ {

"description": "Port of YUI CSS Compressor to NodeJS",
"version": "0.0.23",
"version": "0.0.24",
"keywords": [

@@ -8,0 +8,0 @@ "css",

@@ -36,4 +36,2 @@ /**

var pathResolve = PATH_SEP === "/" ? path.posix.resolve : path.win32.resolve;
var defaultOptions = {

@@ -124,3 +122,3 @@ maxLineLen: 0,

token = token.split(SEP).join(PATH_SEP); // assuming urls in css use "/"
url = pathResolve(options.source.join(PATH_SEP), token).split(PATH_SEP);
url = path.resolve(options.source.join(PATH_SEP), token).split(PATH_SEP);

@@ -800,3 +798,3 @@ file = url.pop();

if (options.convertUrls) {
options.target = pathResolve(process.cwd(), options.convertUrls).split(PATH_SEP);
options.target = path.resolve(process.cwd(), options.convertUrls).split(PATH_SEP);
}

@@ -811,3 +809,3 @@

if (options.convertUrls) {
options.source = pathResolve(process.cwd(), filename).split(PATH_SEP);
options.source = path.resolve(process.cwd(), filename).split(PATH_SEP);
options.source.pop();

@@ -814,0 +812,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