File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import coffeescript from "rollup-plugin-coffee-script";
10
10
import json from "@rollup/plugin-json" ;
11
11
import cssOnly from "rollup-plugin-css-only" ;
12
12
import babel from "@rollup/plugin-babel" ;
13
- import { wasm } from ' @rollup/plugin-wasm' ;
13
+ import { wasm } from " @rollup/plugin-wasm" ;
14
14
15
15
export type Plugin =
16
16
| "js"
@@ -73,7 +73,7 @@ export function createPlugins(
73
73
plugins . push (
74
74
typescript ( {
75
75
noEmitOnError : false ,
76
- module : "ESNext" // do not modify the imports
76
+ module : "ESNext" , // do not modify the imports
77
77
} )
78
78
) ;
79
79
} else {
@@ -184,18 +184,16 @@ export function createPlugins(
184
184
if ( typeof extraPlugins !== "boolean" && extraPlugins !== undefined ) {
185
185
try {
186
186
plugins . push ( ...extraPlugins ) ;
187
- }
188
- catch ( e ) {
189
- console . error ( "You should pass extraPlugins as an array" )
187
+ } catch ( e ) {
188
+ console . error ( "You should pass extraPlugins as an array" ) ;
190
189
}
191
190
}
192
191
193
192
if ( extraPluginsDeprecated ) {
194
193
try {
195
194
plugins . push ( ...extraPluginsDeprecated ) ;
196
- }
197
- catch ( e ) {
198
- console . error ( "You should pass extraPluginsDeprecated as an array" )
195
+ } catch ( e ) {
196
+ console . error ( "You should pass extraPluginsDeprecated as an array" ) ;
199
197
}
200
198
}
201
199
You can’t perform that action at this time.
0 commit comments