@unocss/postcss 66.10.4 → 66.10.5
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.
- package/dist/esm.d.mts +2 -3
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/package.json +5 -5
package/dist/esm.d.mts
CHANGED
|
@@ -17,6 +17,5 @@ interface UnoPostcssPluginOptions {
|
|
|
17
17
|
}
|
|
18
18
|
//#endregion
|
|
19
19
|
//#region src/esm.d.ts
|
|
20
|
-
declare function createPlugin(options: UnoPostcssPluginOptions): (root: Root, result: Result) => Promise<void>;
|
|
21
|
-
//#endregion
|
|
22
|
-
export { createPlugin };
|
|
20
|
+
export declare function createPlugin(options: UnoPostcssPluginOptions): (root: Root, result: Result) => Promise<void>;
|
|
21
|
+
//#endregion
|
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Result, Root } from "postcss";
|
|
2
2
|
import { UserConfig } from "@unocss/core";
|
|
3
3
|
//#region src/types.d.ts
|
|
4
|
-
interface UnoPostcssPluginOptions {
|
|
4
|
+
export interface UnoPostcssPluginOptions {
|
|
5
5
|
content?: (string | {
|
|
6
6
|
raw: string;
|
|
7
7
|
extension: string;
|
|
@@ -27,4 +27,4 @@ declare namespace unocss {
|
|
|
27
27
|
export { _a as default };
|
|
28
28
|
}
|
|
29
29
|
//#endregion
|
|
30
|
-
export {
|
|
30
|
+
export { unocss as default };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Result, Root } from "postcss";
|
|
2
2
|
import { UserConfig } from "@unocss/core";
|
|
3
3
|
//#region src/types.d.ts
|
|
4
|
-
interface UnoPostcssPluginOptions {
|
|
4
|
+
export interface UnoPostcssPluginOptions {
|
|
5
5
|
content?: (string | {
|
|
6
6
|
raw: string;
|
|
7
7
|
extension: string;
|
|
@@ -27,4 +27,4 @@ declare namespace unocss {
|
|
|
27
27
|
export { _a as default };
|
|
28
28
|
}
|
|
29
29
|
//#endregion
|
|
30
|
-
export {
|
|
30
|
+
export { unocss as default };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/postcss",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "66.10.
|
|
4
|
+
"version": "66.10.5",
|
|
5
5
|
"description": "PostCSS plugin for UnoCSS",
|
|
6
6
|
"author": "sibbng <sibbngheid@gmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"postcss": "^8.4.21"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@unocss/config": "66.10.
|
|
48
|
-
"@unocss/core": "66.10.
|
|
49
|
-
"@unocss/rule-utils": "66.10.
|
|
47
|
+
"@unocss/config": "66.10.5",
|
|
48
|
+
"@unocss/core": "66.10.5",
|
|
49
|
+
"@unocss/rule-utils": "66.10.5",
|
|
50
50
|
"css-tree": "^3.2.1",
|
|
51
|
-
"postcss": "^8.5.
|
|
51
|
+
"postcss": "^8.5.28",
|
|
52
52
|
"tinyglobby": "^0.2.17"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|