(url)
| 39 | /** Build Import */ |
| 40 | function formatManifest({manifest, buildDirectory, generatedFiles, preloadCSS}) { |
| 41 | const format = (url) => (isRemoteModule(url) ? url : projectURL(url, buildDirectory)); |
| 42 | |
| 43 | const sorted = Object.entries(manifest).map(([k, v]) => { |
| 44 | const entry = v.entry.map(format); |
no test coverage detected