File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -4,5 +4,11 @@ export default makeNPMConfigVariants(
44 makeBaseNPMConfig ( {
55 // packages with bundles have a different build directory structure
66 hasBundles : true ,
7+ packageSpecificConfig : {
8+ output : {
9+ // Combine output into a single file to avoid expensive require/import calls
10+ preserveModules : false ,
11+ } ,
12+ } ,
713 } ) ,
814) ;
Original file line number Diff line number Diff line change 11import { makeBaseNPMConfig , makeNPMConfigVariants } from '../../rollup/index.js' ;
22
3- export default makeNPMConfigVariants ( makeBaseNPMConfig ( ) ) ;
3+ export default makeNPMConfigVariants (
4+ makeBaseNPMConfig ( {
5+ packageSpecificConfig : {
6+ output : {
7+ // Combine output into a single file to avoid expensive require/import calls
8+ preserveModules : false ,
9+ } ,
10+ } ,
11+ } ) ,
12+ ) ;
You can’t perform that action at this time.
0 commit comments