(source: string, importer: string)
| 896 | } |
| 897 | |
| 898 | export function logNonExternalSourcePhaseImport(source: string, importer: string): RollupLog { |
| 899 | return { |
| 900 | code: NON_EXTERNAL_SOURCE_PHASE_IMPORT, |
| 901 | message: `Source phase import "${source}" in "${relativeId(importer)}" must be external. Source phase imports are only supported for external modules. Use the "external" option to mark this module as external.`, |
| 902 | url: getRollupUrl(URL_SOURCE_PHASE_IMPORTS) |
| 903 | }; |
| 904 | } |
| 905 | |
| 906 | export function logNoFileSystemInBrowser(method: string): RollupLog { |
| 907 | return { |
no test coverage detected
searching dependent graphs…