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

windicss

Package Overview
Dependencies
Maintainers
1
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

windicss - npm Package Compare versions

Comparing version 1.1.8 to 1.1.9

src/utils/sort.d.ts

8

package.json
{
"name": "windicss",
"version": "1.1.8",
"version": "1.1.9",
"description": "windicss is a css compiler or css interpreter, which is based on the grammar of tailwindcss and adds other features.",

@@ -11,6 +11,6 @@ "main": "src/index.js",

"scripts": {
"build": "tsc",
"dev": "tsc -w",
"example": "tsc -p ./example",
"test": "tsc -p ./test"
"test": "tsc -p ./test",
"build": "tsc -p ./src",
"example": "tsc -p ./example"
},

@@ -17,0 +17,0 @@ "repository": {

@@ -24,2 +24,3 @@ "use strict";

exports.StyleSheet = exports.GlobalStyle = exports.Style = exports.Property = void 0;
var sort_1 = require("./sort");
var tools_1 = require("./tools");

@@ -260,3 +261,3 @@ var Property = /** @class */ (function () {

var sortedAtrules = {};
Object.keys(originAtrules).reverse().forEach(function (key) {
Object.keys(originAtrules).sort(sort_1.sortMediaQuery).forEach(function (key) {
sortedAtrules[key] = originAtrules[key];

@@ -263,0 +264,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