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

@meetdomaine/tailwind-syrah

Package Overview
Dependencies
Maintainers
0
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@meetdomaine/tailwind-syrah - npm Package Compare versions

Comparing version 1.0.20 to 1.0.21

.github/dependabot.yml

2

package.json
{
"name": "@meetdomaine/tailwind-syrah",
"version": "1.0.20",
"version": "1.0.21",
"description": "A TailwindCSS plugin for Domaine",

@@ -5,0 +5,0 @@ "main": "src/index.ts",

@@ -37,4 +37,6 @@ import set from "lodash/set";

export const getFontFamilyVariable = (fontFamily: FontFamilyKey): string =>
`var(--font-family-${kebabCase(fontFamily)})`;
export const getFontFamilyVariable = (
fontFamily: FontFamilyKey,
defaultValue: string = "system-ui"
): string => `var(--font-family-${kebabCase(fontFamily)}, "${defaultValue}")`;

@@ -62,3 +64,5 @@ export const getFontFamilyFromMapping = (

return asVariable ? getFontFamilyVariable(currentValue) : currentValue;
return asVariable
? getFontFamilyVariable(currentValue, manifestFontFamily)
: currentValue;
};

@@ -65,0 +69,0 @@

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