@unocss/postcss 0.65.2 → 0.65.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/esm.mjs +1 -2
  2. package/package.json +4 -4
package/dist/esm.mjs CHANGED
@@ -108,8 +108,7 @@ async function parseScreen(root, uno, directiveName) {
108
108
  return `(max-width: ${calcMaxWidthBySize(size)})`;
109
109
  else if (prefix2 === "at")
110
110
  return `(min-width: ${size})${variantEntries[idx + 1] ? ` and (max-width: ${calcMaxWidthBySize(variantEntries[idx + 1][1])})` : ""}`;
111
- else
112
- throw new Error(`breakpoint variant not supported: ${prefix2}`);
111
+ else throw new Error(`breakpoint variant not supported: ${prefix2}`);
113
112
  }
114
113
  return `(min-width: ${size})`;
115
114
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unocss/postcss",
3
3
  "type": "module",
4
- "version": "0.65.2",
4
+ "version": "0.65.4",
5
5
  "description": "PostCSS plugin for UnoCSS",
6
6
  "author": "sibbng <sibbngheid@gmail.com>",
7
7
  "license": "MIT",
@@ -57,9 +57,9 @@
57
57
  "css-tree": "^3.1.0",
58
58
  "postcss": "^8.4.49",
59
59
  "tinyglobby": "^0.2.10",
60
- "@unocss/config": "0.65.2",
61
- "@unocss/core": "0.65.2",
62
- "@unocss/rule-utils": "0.65.2"
60
+ "@unocss/rule-utils": "0.65.4",
61
+ "@unocss/core": "0.65.4",
62
+ "@unocss/config": "0.65.4"
63
63
  },
64
64
  "scripts": {
65
65
  "build": "unbuild",