File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
- import { Plugin , RollupWarning } from 'rollup' ;
1
+ import { Plugin , RollupWarning , PluginContext } from 'rollup' ;
2
2
import { PreprocessorGroup } from 'svelte/types/compiler/preprocess' ;
3
3
4
4
interface Css {
@@ -8,6 +8,7 @@ interface Css {
8
8
9
9
declare class CssWriter {
10
10
code : string ;
11
+ filename : string ;
11
12
map : {
12
13
version : number ;
13
14
file ?: boolean ;
@@ -17,6 +18,7 @@ declare class CssWriter {
17
18
mappings : string ;
18
19
} ;
19
20
warn : RollupWarning ;
21
+ bundle : PluginContext ;
20
22
write ( dest : string , map : boolean ) : void ;
21
23
toString ( ) : string ;
22
24
}
Original file line number Diff line number Diff line change @@ -328,7 +328,7 @@ module.exports = function svelte(options = {}) {
328
328
329
329
css ( writer ) ;
330
330
331
-
331
+
332
332
}
333
333
if ( pkg_export_errors . size < 1 ) return ;
334
334
You can’t perform that action at this time.
0 commit comments