Comparing version 1.1.8 to 1.1.9
{ | ||
"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 @@ }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
209379
51
4926