Socket
Socket
Sign inDemoInstall

unocss

Package Overview
Dependencies
Maintainers
1
Versions
370
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unocss - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

13

package.json
{
"name": "unocss",
"version": "0.1.0",
"version": "0.1.1",
"description": "",

@@ -36,6 +36,6 @@ "keywords": [],

"dependencies": {
"@unocss/core": "0.1.0",
"@unocss/preset-attributify": "0.1.0",
"@unocss/preset-uno": "0.1.0",
"@unocss/vite": "0.1.0"
"@unocss/core": "0.1.1",
"@unocss/preset-attributify": "0.1.1",
"@unocss/preset-uno": "0.1.1",
"@unocss/vite": "0.1.1"
},

@@ -45,2 +45,5 @@ "devDependencies": {

},
"engines": {
"node": ">=14"
},
"scripts": {

@@ -47,0 +50,0 @@ "build": "tsup",

@@ -7,3 +7,3 @@ # UnoCSS

> 💡 I highly recommend to read this blog post - [**Reimagine Atomic CSS**](https://antfu.me/posts/reimagine-atomic-css#no-parsing-no-ast) for the story behind this tool.
> 💡 I highly recommend reading this blog post - [**Reimagine Atomic CSS**](https://antfu.me/posts/reimagine-atomic-css) for the story behind this tool.

@@ -23,3 +23,2 @@ ###### Try it!

- [Pure CSS Icons](https://github.com/antfu/unocss/tree/main/packages/preset-icons/) - use any icon as a single class.
- Code-splitting for CSS - ships minimal CSS for MPA.
- [CSS Scoping](#css-scoping)

@@ -50,3 +49,3 @@ - Code-splitting for CSS - ships minimal CSS for MPA.

###### Disclamier
###### Disclaimer

@@ -163,4 +162,4 @@ > 🧪 This package is trying to explore the possibilities of what an atomic CSS framework can be. **Not production-ready**, yet. Expect breaking changes and overhaul redesigns.

rules: [
[/^m-(\d)$/, ([, d]) => ({ margin: `${d / 4}rem` })],
[/^p-(\d)$/, (match) => ({ padding: `${match[1] / 4}rem` })],
[/^m-(\d+)$/, ([, d]) => ({ margin: `${d / 4}rem` })],
[/^p-(\d+)$/, (match) => ({ padding: `${match[1] / 4}rem` })],
]

@@ -167,0 +166,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