File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
packages/excel-builder-vanilla Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export default defineConfig(options => [
9
9
sourcemap : true ,
10
10
clean : true ,
11
11
dts : ! options . watch ,
12
+ minify : ! options . watch ,
12
13
outExtension : ( { format } ) => ( { js : format === 'cjs' ? '.cjs' : '.mjs' } ) ,
13
14
} ,
14
15
// common js for node and other backend runtimes
@@ -19,6 +20,7 @@ export default defineConfig(options => [
19
20
sourcemap : true ,
20
21
clean : true ,
21
22
dts : ! options . watch ,
23
+ minify : true ,
22
24
outExtension : ( { format } ) => ( {
23
25
js : format === 'cjs' ? '.cjs' : '.mjs' ,
24
26
} ) ,
@@ -34,6 +36,7 @@ export default defineConfig(options => [
34
36
splitting : false ,
35
37
sourcemap : true ,
36
38
clean : true ,
39
+ minify : true ,
37
40
outExtension : ( { format } ) => ( {
38
41
js : '.iife.js' ,
39
42
} ) ,
You can’t perform that action at this time.
0 commit comments