|
|
@ -3,11 +3,12 @@ import getExportBlock from './shared/getExportBlock.js'; |
|
|
|
export default function cjs ( bundle, magicString, { exportMode }, options ) { |
|
|
|
let intro = options.useStrict === false ? `` : `'use strict';\n\n`; |
|
|
|
|
|
|
|
const hasDefaultImport = bundle.externalModules.some( mod => mod.declarations.default); |
|
|
|
let needsInterop = false; |
|
|
|
// const hasDefaultImport = bundle.externalModules.some( mod => mod.declarations.default);
|
|
|
|
|
|
|
|
if (hasDefaultImport) { |
|
|
|
intro += `function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }\n\n`; |
|
|
|
} |
|
|
|
// if (hasDefaultImport) {
|
|
|
|
// intro += `function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }\n\n`;
|
|
|
|
// }
|
|
|
|
|
|
|
|
const varOrConst = bundle.varOrConst; |
|
|
|
|
|
|
@ -15,18 +16,29 @@ export default function cjs ( bundle, magicString, { exportMode }, options ) { |
|
|
|
const importBlock = bundle.externalModules |
|
|
|
.map( module => { |
|
|
|
if ( module.declarations.default ) { |
|
|
|
if (module.exportsNames) { |
|
|
|
if ( module.exportsNamespace ) { |
|
|
|
return `${varOrConst} ${module.name} = require('${module.id}');` + |
|
|
|
`\n${varOrConst} ${module.name}__default = ${module.name}['default'];`; |
|
|
|
} |
|
|
|
|
|
|
|
needsInterop = true; |
|
|
|
|
|
|
|
if ( module.exportsNames ) { |
|
|
|
return `${varOrConst} ${module.name} = require('${module.id}');` + |
|
|
|
`\n${varOrConst} ${module.name}__default = _interopDefault(${module.name});`; |
|
|
|
} else { |
|
|
|
return `${varOrConst} ${module.name} = _interopDefault(require('${module.id}'));`; |
|
|
|
} |
|
|
|
|
|
|
|
return `${varOrConst} ${module.name} = _interopDefault(require('${module.id}'));`; |
|
|
|
} else { |
|
|
|
return `${varOrConst} ${module.name} = require('${module.id}');`; |
|
|
|
} |
|
|
|
}) |
|
|
|
.join( '\n' ); |
|
|
|
|
|
|
|
if ( needsInterop ) { |
|
|
|
intro += `function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }\n\n`; |
|
|
|
} |
|
|
|
|
|
|
|
if ( importBlock ) { |
|
|
|
intro += importBlock + '\n\n'; |
|
|
|
} |
|
|
|