File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ declare namespace CssMinimizerPlugin {
68
68
cssoMinify ,
69
69
cleanCssMinify ,
70
70
esbuildMinify ,
71
+ parcelCssMinify ,
71
72
Schema ,
72
73
Compiler ,
73
74
Compilation ,
@@ -128,6 +129,7 @@ import { cssnanoMinify } from "./utils";
128
129
import { cssoMinify } from "./utils" ;
129
130
import { cleanCssMinify } from "./utils" ;
130
131
import { esbuildMinify } from "./utils" ;
132
+ import { parcelCssMinify } from "./utils" ;
131
133
type Schema = import ( "schema-utils/declarations/validate" ) . Schema ;
132
134
type Compilation = import ( "webpack" ) . Compilation ;
133
135
type WebpackError = import ( "webpack" ) . WebpackError ;
Original file line number Diff line number Diff line change @@ -62,3 +62,14 @@ export function esbuildMinify(
62
62
sourceMap : RawSourceMap | undefined ,
63
63
minimizerOptions : CustomOptions
64
64
) : Promise < MinimizedResult > ;
65
+ /**
66
+ * @param {Input } input
67
+ * @param {RawSourceMap | undefined } sourceMap
68
+ * @param {CustomOptions } minimizerOptions
69
+ * @return {Promise<MinimizedResult> }
70
+ */
71
+ export function parcelCssMinify (
72
+ input : Input ,
73
+ sourceMap : RawSourceMap | undefined ,
74
+ minimizerOptions : CustomOptions
75
+ ) : Promise < MinimizedResult > ;
You can’t perform that action at this time.
0 commit comments