(options)
| 696 | } |
| 697 | |
| 698 | function shouldUseImportPlugin(options) { |
| 699 | if (options.modules.exportOnlyLocals) { |
| 700 | return false; |
| 701 | } |
| 702 | |
| 703 | if (typeof options.import === "boolean") { |
| 704 | return options.import; |
| 705 | } |
| 706 | |
| 707 | return true; |
| 708 | } |
| 709 | |
| 710 | function shouldUseURLPlugin(options) { |
| 711 | if (options.modules.exportOnlyLocals) { |