Socket
Socket
Sign inDemoInstall

tailwindcss

Package Overview
Dependencies
Maintainers
3
Versions
1735
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tailwindcss - npm Package Compare versions

Comparing version 3.3.6 to 3.3.7

6

lib/lib/defaultExtractor.js

@@ -83,3 +83,7 @@ "use strict";

// Utility Name / Group Name
/-?(?:\w+)/,
_regex.any([
/-?(?:\w+)/,
// This is here to make sure @container supports everything that other utilities do
/@(?:\w+)/
]),
// Normal/Arbitrary values

@@ -86,0 +90,0 @@ _regex.optional(_regex.any([

2

lib/lib/load-config.js

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

function useCustomJiti(_jiti) {
jiti = _jiti;
jiti = _jiti();
}

@@ -31,0 +31,0 @@ function lazyJiti() {

{
"name": "tailwindcss",
"version": "3.3.6",
"version": "3.3.7",
"description": "A utility-first CSS framework for rapidly building custom user interfaces.",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -43,4 +43,9 @@ import * as regex from './regex'

// Utility Name / Group Name
/-?(?:\w+)/,
regex.any([
/-?(?:\w+)/,
// This is here to make sure @container supports everything that other utilities do
/@(?:\w+)/,
]),
// Normal/Arbitrary values

@@ -47,0 +52,0 @@ regex.optional(

@@ -11,4 +11,4 @@ import jitiFactory from 'jiti'

// If you rely on this your stuff WILL break
export function useCustomJiti(_jiti: ReturnType<typeof jitiFactory>) {
jiti = _jiti
export function useCustomJiti(_jiti: () => ReturnType<typeof jitiFactory>) {
jiti = _jiti()
}

@@ -15,0 +15,0 @@

Sorry, the diff of this file is too big to display

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