Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

rework

Package Overview
Dependencies
7
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.17.1 to 0.17.2

2

component.json
{
"name": "rework",
"version": "0.17.1",
"version": "0.17.2",
"description": "CSS manipulations built on CSSOM",

@@ -5,0 +5,0 @@ "keywords": ["css", "manipulation", "preprocess", "transform"],

0.17.2 / 2013-07-10
==================
* fix references preceeded by punctuation. Closes #106
0.17.1 / 2013-07-03

@@ -3,0 +8,0 @@ ==================

@@ -21,4 +21,4 @@

* width: 50px;
* height: 50px;
* line-height: 50px;
* height: 50px;
* line-height: 50px;
* }

@@ -50,5 +50,7 @@ *

decl.value = val.replace(/(^| )@([-\w]+)/g, function(_, p, name){
decl.value = val.replace(/@([-\w]+)/g, function(_, name){
// TODO: fix this problem for real with visionmedia/css-value
if ('2x' == name) return '@' + name;
if (null == map[name]) throw new Error('@' + name + ' is not defined in this scope');
return p + map[name];
return map[name];
});

@@ -55,0 +57,0 @@

{
"name": "rework",
"version": "0.17.1",
"version": "0.17.2",
"description": "CSS manipulations built on CSSOM",

@@ -5,0 +5,0 @@ "keywords": ["css", "manipulation", "preprocess", "transform"],

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