Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vanilla-extract/babel-plugin-debug-ids

Package Overview
Dependencies
Maintainers
0
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vanilla-extract/babel-plugin-debug-ids - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

8

dist/vanilla-extract-babel-plugin-debug-ids.cjs.dev.js

@@ -31,3 +31,9 @@ 'use strict';

createVar: {
maxParams: 1
maxParams: 2,
hasDebugId: ({
arguments: args
}) => {
const previousArg = args[args.length - 1];
return core.types.isStringLiteral(previousArg) || core.types.isTemplateLiteral(previousArg);
}
},

@@ -34,0 +40,0 @@ recipe: {

@@ -31,3 +31,9 @@ 'use strict';

createVar: {
maxParams: 1
maxParams: 2,
hasDebugId: ({
arguments: args
}) => {
const previousArg = args[args.length - 1];
return core.types.isStringLiteral(previousArg) || core.types.isTemplateLiteral(previousArg);
}
},

@@ -34,0 +40,0 @@ recipe: {

@@ -27,3 +27,9 @@ import { types } from '@babel/core';

createVar: {
maxParams: 1
maxParams: 2,
hasDebugId: ({
arguments: args
}) => {
const previousArg = args[args.length - 1];
return types.isStringLiteral(previousArg) || types.isTemplateLiteral(previousArg);
}
},

@@ -30,0 +36,0 @@ recipe: {

2

package.json
{
"name": "@vanilla-extract/babel-plugin-debug-ids",
"version": "1.1.0",
"version": "1.2.0",
"description": "Zero-runtime Stylesheets-in-TypeScript",

@@ -5,0 +5,0 @@ "main": "dist/vanilla-extract-babel-plugin-debug-ids.cjs.js",

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