Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/rollup/dist/shared/loadConfigFile.js
r0c6b92a r79a0317 1 1 /* 2 2 @license 3 Rollup.js v4.2 7.44 Sat, 23 Nov 2024 06:59:50 GMT - commit e805b546405a4e6cfccd3fe73e9f4df7700238243 Rollup.js v4.28.1 4 Fri, 06 Dec 2024 11:44:27 GMT - commit e60fb1c5d4e54ed5257495215eeda1bb43cf54ba 5 5 6 6 https://github.com/rollup/rollup … … 487 487 return namespace.default || namespace; 488 488 } 489 function getConfigImportAttributesKey(input) { 490 if (input === 'assert' || input === 'with') 491 return input; 492 return; 493 } 489 494 async function loadTranspiledConfigFile(fileName, commandOptions) { 490 const { bundleConfigAsCjs, configPlugin, silent } = commandOptions;495 const { bundleConfigAsCjs, configPlugin, configImportAttributesKey, silent } = commandOptions; 491 496 const warnings = batchWarnings(commandOptions); 492 497 const inputOptions = { … … 502 507 exports: 'named', 503 508 format: bundleConfigAsCjs ? 'cjs' : 'es', 509 importAttributesKey: getConfigImportAttributesKey(configImportAttributesKey), 504 510 plugins: [ 505 511 {
Note:
See TracChangeset
for help on using the changeset viewer.