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

@modular-css/processor

Package Overview
Dependencies
23
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 29.0.0 to 29.0.1

2

package.json
{
"name": "@modular-css/processor",
"version": "29.0.0",
"version": "29.0.1",
"description": "A streamlined reinterpretation of CSS Modules",

@@ -5,0 +5,0 @@ "main": "./processor.js",

@@ -119,2 +119,13 @@ "use strict";

},
RootExit() {
// Update any references that might've been affected by imports
for(const name of Object.keys(values)) {
const { value } = values[name];
if(value in values) {
values[name] = values[value];
}
}
},
};

@@ -121,0 +132,0 @@ },

@@ -37,2 +37,3 @@ "use strict";

const parsed = value(thing[prop]);
let modified = false;

@@ -51,5 +52,9 @@ parsed.walk((node) => {

node.value = current.value;
modified = true;
});
thing[prop] = parsed.toString();
if(modified) {
thing[prop] = parsed.toString();
}
};

@@ -56,0 +61,0 @@

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