New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@convoy/dapper

Package Overview
Dependencies
Maintainers
43
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@convoy/dapper - npm Package Compare versions

Comparing version 2.0.97 to 2.0.104

2

dist/src/configure.js

@@ -6,3 +6,3 @@ "use strict";

friendlyClassNames: process.env.NODE_ENV !== 'production',
useInsertRule: process.env.NODE_ENV === 'production',
useInsertRule: process.env.NODE_ENV !== 'development',
});

@@ -9,0 +9,0 @@ function configure(cfg) {

@@ -13,3 +13,14 @@ "use strict";

cssTexts.forEach(function (cssText) {
sheet_1.insertRule(cssText, sheet_1.cssRules.length);
// Gracefully continue despite invalid CSS rules in production
try {
sheet_1.insertRule(cssText, sheet_1.cssRules.length);
}
catch (e) {
if (process.env.NODE_ENV === 'production') {
console.error(e); // tslint:disable-line
}
else {
throw e;
}
}
});

@@ -16,0 +27,0 @@ }

{
"name": "@convoy/dapper",
"version": "2.0.97",
"version": "2.0.104",
"description": "Styling library",

@@ -46,2 +46,5 @@ "license": "Apache-2.0",

"@types/sinon-chai": "2.7.27",
"@types/source-map": "^0.5.0",
"@types/tapable": "^0.2.3",
"@types/uglify-js": "^2.6.29",
"@types/webpack": "2.2.4",

@@ -48,0 +51,0 @@ "chai": "3.5.0",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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