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

@warp-ds/uno

Package Overview
Dependencies
Maintainers
6
Versions
135
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@warp-ds/uno - npm Package Compare versions

Comparing version 1.0.0-alpha.33 to 1.0.0-alpha.34

2

package.json
{
"name": "@warp-ds/uno",
"repository": "git@github.com:warp-ds/drive.git",
"version": "1.0.0-alpha.33",
"version": "1.0.0-alpha.34",
"type": "module",

@@ -6,0 +6,0 @@ "exports": {

@@ -41,3 +41,10 @@ import { positionMap, globalKeywords, makeGlobalStaticRules } from '#utils';

//arbitrary
[/^bg-\[(.+)\]/, ([, p]) => ({ 'background-image': p })],
[/^bg-\[(.+)\]/, ([, p]) => {
if (p.startsWith('url')) {
return { 'background-image': p };
} else if (p.startsWith('var')) {
return { 'background-color': p };
}
return { 'background-color': `var(${p})` };
}],
];

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