(source: string)
| 1142 | } |
| 1143 | |
| 1144 | export function logExternalModulesCannotBeTransformedToModules(source: string): RollupLog { |
| 1145 | return { |
| 1146 | code: EXTERNAL_MODULES_CANNOT_BE_TRANSFORMED_TO_MODULES, |
| 1147 | message: `${source} is resolved as a module now, but it was an external module before. Please check whether there are conflicts in your Rollup options "external" and "manualChunks", manualChunks cannot include external modules.` |
| 1148 | }; |
| 1149 | } |
| 1150 | |
| 1151 | export function logUnresolvedEntry(unresolvedId: string): RollupLog { |
| 1152 | return { |
no outgoing calls
no test coverage detected
searching dependent graphs…