@@ -3,6 +3,7 @@ import type { Compilation as RspackCompilation, Compiler as RspackCompiler, Load
3
3
import type { BuildOptions , Plugin as EsbuildPlugin , Loader , PluginBuild } from 'esbuild'
4
4
import type { Plugin as RolldownPlugin } from 'rolldown'
5
5
import type { AstNode , EmittedAsset , PluginContextMeta as RollupContextMeta , Plugin as RollupPlugin , SourceMapInput } from 'rollup'
6
+ import type { Plugin as UnloaderPlugin } from 'unloader'
6
7
import type { Plugin as VitePlugin } from 'vite'
7
8
import type { Compilation as WebpackCompilation , Compiler as WebpackCompiler , LoaderContext as WebpackLoaderContext , WebpackPluginInstance } from 'webpack'
8
9
import type VirtualModulesPlugin from 'webpack-virtual-modules'
@@ -13,6 +14,7 @@ export type {
13
14
RollupPlugin ,
14
15
RspackCompiler ,
15
16
RspackPluginInstance ,
17
+ UnloaderPlugin ,
16
18
VitePlugin ,
17
19
WebpackCompiler ,
18
20
WebpackPluginInstance ,
@@ -90,6 +92,7 @@ export interface UnpluginOptions {
90
92
webpack ?: ( compiler : WebpackCompiler ) => void
91
93
rspack ?: ( compiler : RspackCompiler ) => void
92
94
vite ?: Partial < VitePlugin >
95
+ unloader ?: Partial < UnloaderPlugin >
93
96
rolldown ?: Partial < RolldownPlugin >
94
97
esbuild ?: {
95
98
// using regexp in esbuild improves performance
@@ -124,12 +127,13 @@ export interface UnpluginInstance<UserOptions, Nested extends boolean = boolean>
124
127
webpack : UnpluginFactoryOutput < UserOptions , WebpackPluginInstance >
125
128
rspack : UnpluginFactoryOutput < UserOptions , RspackPluginInstance >
126
129
esbuild : UnpluginFactoryOutput < UserOptions , EsbuildPlugin >
130
+ unloader : UnpluginFactoryOutput < UserOptions , Nested extends true ? Array < UnloaderPlugin > : UnloaderPlugin >
127
131
farm : UnpluginFactoryOutput < UserOptions , FarmPlugin >
128
132
raw : UnpluginFactory < UserOptions , Nested >
129
133
}
130
134
131
135
export type UnpluginContextMeta = Partial < RollupContextMeta > & ( {
132
- framework : 'rollup' | 'vite' | 'rolldown' | 'farm'
136
+ framework : 'rollup' | 'vite' | 'rolldown' | 'farm' | 'unloader'
133
137
} | {
134
138
framework : 'webpack'
135
139
webpack : { compiler : WebpackCompiler }
0 commit comments