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

@pandacss/extractor

Package Overview
Dependencies
Maintainers
1
Versions
888
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pandacss/extractor - npm Package Compare versions

Comparing version 0.31.0 to 0.32.0

5

dist/index.js

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

var isNullish = (element) => element == null;
var isTruthyOrZero = (element) => !!element || element === 0;
var isObject = (value) => value != null && typeof value === "object";

@@ -1571,6 +1572,6 @@ var isArray = (value) => Array.isArray(value);

}
if (whenTrue) {
if (isTruthyOrZero(whenTrue)) {
ctx.conditions.push(makeObjAt(path, whenTrue));
}
if (whenFalse) {
if (isTruthyOrZero(whenFalse)) {
ctx.conditions.push(makeObjAt(path, whenFalse));

@@ -1577,0 +1578,0 @@ }

8

package.json
{
"name": "@pandacss/extractor",
"version": "0.31.0",
"version": "0.32.0",
"description": "The css extractor for css panda",

@@ -35,5 +35,5 @@ "main": "dist/index.js",

"dependencies": {
"ts-evaluator": "^1.1.0",
"ts-morph": "19.0.0",
"@pandacss/shared": "0.31.0"
"ts-evaluator": "1.2.0",
"ts-morph": "21.0.1",
"@pandacss/shared": "0.32.0"
},

@@ -40,0 +40,0 @@ "scripts": {

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