unocss 0.49.8 → 0.50.0

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.
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const postcss = require('@unocss/postcss');
6
+
7
+
8
+
9
+ for (const k in postcss) {
10
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = postcss[k];
11
+ }
@@ -0,0 +1 @@
1
+ export * from '@unocss/postcss';
@@ -0,0 +1 @@
1
+ export * from '@unocss/postcss';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unocss",
3
- "version": "0.49.8",
3
+ "version": "0.50.0",
4
4
  "description": "The instant on-demand Atomic CSS engine.",
5
5
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
6
6
  "license": "MIT",
@@ -85,6 +85,11 @@
85
85
  "types": "./dist/webpack.d.ts",
86
86
  "require": "./dist/webpack.cjs",
87
87
  "import": "./dist/webpack.mjs"
88
+ },
89
+ "./postcss": {
90
+ "types": "./dist/postcss.d.ts",
91
+ "require": "./dist/postcss.cjs",
92
+ "import": "./dist/postcss.mjs"
88
93
  }
89
94
  },
90
95
  "main": "dist/index.cjs",
@@ -98,7 +103,7 @@
98
103
  "node": ">=14"
99
104
  },
100
105
  "peerDependencies": {
101
- "@unocss/webpack": "0.49.8"
106
+ "@unocss/webpack": "0.50.0"
102
107
  },
103
108
  "peerDependenciesMeta": {
104
109
  "@unocss/webpack": {
@@ -106,26 +111,26 @@
106
111
  }
107
112
  },
108
113
  "dependencies": {
109
- "@unocss/astro": "0.49.8",
110
- "@unocss/cli": "0.49.8",
111
- "@unocss/core": "0.49.8",
112
- "@unocss/preset-attributify": "0.49.8",
113
- "@unocss/preset-icons": "0.49.8",
114
- "@unocss/preset-mini": "0.49.8",
115
- "@unocss/preset-tagify": "0.49.8",
116
- "@unocss/preset-typography": "0.49.8",
117
- "@unocss/preset-uno": "0.49.8",
118
- "@unocss/preset-web-fonts": "0.49.8",
119
- "@unocss/preset-wind": "0.49.8",
120
- "@unocss/reset": "0.49.8",
121
- "@unocss/transformer-attributify-jsx": "0.49.8",
122
- "@unocss/transformer-compile-class": "0.49.8",
123
- "@unocss/transformer-directives": "0.49.8",
124
- "@unocss/transformer-variant-group": "0.49.8",
125
- "@unocss/vite": "0.49.8"
114
+ "@unocss/astro": "0.50.0",
115
+ "@unocss/cli": "0.50.0",
116
+ "@unocss/core": "0.50.0",
117
+ "@unocss/preset-attributify": "0.50.0",
118
+ "@unocss/preset-icons": "0.50.0",
119
+ "@unocss/preset-mini": "0.50.0",
120
+ "@unocss/preset-tagify": "0.50.0",
121
+ "@unocss/preset-typography": "0.50.0",
122
+ "@unocss/preset-uno": "0.50.0",
123
+ "@unocss/preset-web-fonts": "0.50.0",
124
+ "@unocss/preset-wind": "0.50.0",
125
+ "@unocss/reset": "0.50.0",
126
+ "@unocss/transformer-attributify-jsx": "0.50.0",
127
+ "@unocss/transformer-compile-class": "0.50.0",
128
+ "@unocss/transformer-directives": "0.50.0",
129
+ "@unocss/transformer-variant-group": "0.50.0",
130
+ "@unocss/vite": "0.50.0"
126
131
  },
127
132
  "devDependencies": {
128
- "@unocss/webpack": "0.49.8"
133
+ "@unocss/webpack": "0.50.0"
129
134
  },
130
135
  "scripts": {
131
136
  "build": "unbuild",
package/postcss.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './dist/postcss'
2
+ export { default } from './dist/postcss'