|
| 1 | +import type { Chunk } from '@rspack/core'; |
| 2 | +import { recursiveChunkEntryNames } from '../rspack/preload/helpers'; |
| 3 | +import type { RsbuildPlugin } from '../types'; |
| 4 | + |
| 5 | +type FilePath = string; |
| 6 | + |
| 7 | +type ManifestByEntry = { |
| 8 | + initial: { |
| 9 | + js: FilePath[]; |
| 10 | + css: FilePath[]; |
| 11 | + }; |
| 12 | + async: { |
| 13 | + js: FilePath[]; |
| 14 | + css: FilePath[]; |
| 15 | + }; |
| 16 | + /** other assets (e.g. png、svg、source map) related to the current entry */ |
| 17 | + assets: FilePath[]; |
| 18 | + html?: FilePath; |
| 19 | +}; |
| 20 | + |
| 21 | +type ManifestList = { |
| 22 | + entries: { |
| 23 | + /** relate to rsbuild source.entry */ |
| 24 | + [entryName: string]: ManifestByEntry; |
| 25 | + }; |
| 26 | + /** Flatten all assets */ |
| 27 | + allFiles: FilePath[]; |
| 28 | +}; |
| 29 | + |
| 30 | +type FileDescriptor = { |
| 31 | + chunk?: Chunk; |
| 32 | + isInitial: boolean; |
| 33 | + name: string; |
| 34 | + path: string; |
| 35 | +}; |
| 36 | + |
| 37 | +const generateManifest = |
| 38 | + (htmlPaths: Record<string, string>) => |
| 39 | + (_seed: Record<string, any>, files: FileDescriptor[]) => { |
| 40 | + const chunkEntries = new Map<string, FileDescriptor[]>(); |
| 41 | + |
| 42 | + const licenseMap = new Map<string, string>(); |
| 43 | + |
| 44 | + const allFiles = files.map((file) => { |
| 45 | + if (file.chunk) { |
| 46 | + const names = recursiveChunkEntryNames(file.chunk); |
| 47 | + |
| 48 | + for (const name of names) { |
| 49 | + chunkEntries.set(name, [file, ...(chunkEntries.get(name) || [])]); |
| 50 | + } |
| 51 | + } |
| 52 | + |
| 53 | + if (file.path.endsWith('.LICENSE.txt')) { |
| 54 | + const sourceFilePath = file.path.split('.LICENSE.txt')[0]; |
| 55 | + licenseMap.set(sourceFilePath, file.path); |
| 56 | + } |
| 57 | + return file.path; |
| 58 | + }); |
| 59 | + |
| 60 | + const entries: ManifestList['entries'] = {}; |
| 61 | + |
| 62 | + for (const [name, chunkFiles] of chunkEntries) { |
| 63 | + const assets = new Set<string>(); |
| 64 | + const initialJS: string[] = []; |
| 65 | + const asyncJS: string[] = []; |
| 66 | + const initialCSS: string[] = []; |
| 67 | + const asyncCSS: string[] = []; |
| 68 | + |
| 69 | + for (const file of chunkFiles) { |
| 70 | + if (file.isInitial) { |
| 71 | + if (file.path.endsWith('.css')) { |
| 72 | + initialCSS.push(file.path); |
| 73 | + } else { |
| 74 | + initialJS.push(file.path); |
| 75 | + } |
| 76 | + } else { |
| 77 | + if (file.path.endsWith('.css')) { |
| 78 | + asyncCSS.push(file.path); |
| 79 | + } else { |
| 80 | + asyncJS.push(file.path); |
| 81 | + } |
| 82 | + } |
| 83 | + |
| 84 | + const relatedLICENSE = licenseMap.get(file.path); |
| 85 | + |
| 86 | + if (relatedLICENSE) { |
| 87 | + assets.add(relatedLICENSE); |
| 88 | + } |
| 89 | + |
| 90 | + for (const auxiliaryFile of file.chunk!.auxiliaryFiles) { |
| 91 | + assets.add(auxiliaryFile); |
| 92 | + } |
| 93 | + } |
| 94 | + |
| 95 | + entries[name] = { |
| 96 | + initial: { |
| 97 | + js: initialJS, |
| 98 | + css: initialCSS, |
| 99 | + }, |
| 100 | + async: { |
| 101 | + js: asyncJS, |
| 102 | + css: asyncCSS, |
| 103 | + }, |
| 104 | + assets: Array.from(assets), |
| 105 | + html: files.find((f) => f.name === htmlPaths[name])?.path, |
| 106 | + }; |
| 107 | + } |
| 108 | + |
| 109 | + return { |
| 110 | + allFiles, |
| 111 | + entries, |
| 112 | + }; |
| 113 | + }; |
| 114 | + |
| 115 | +export const pluginManifest = (): RsbuildPlugin => ({ |
| 116 | + name: 'rsbuild:manifest', |
| 117 | + |
| 118 | + setup(api) { |
| 119 | + api.modifyBundlerChain(async (chain, { CHAIN_ID }) => { |
| 120 | + const htmlPaths = api.getHTMLPaths(); |
| 121 | + |
| 122 | + const { |
| 123 | + output: { manifest }, |
| 124 | + } = api.getNormalizedConfig(); |
| 125 | + |
| 126 | + if (manifest === false) { |
| 127 | + return; |
| 128 | + } |
| 129 | + |
| 130 | + const fileName = |
| 131 | + typeof manifest === 'string' ? manifest : 'manifest.json'; |
| 132 | + |
| 133 | + const { RspackManifestPlugin } = await import( |
| 134 | + '../../compiled/rspack-manifest-plugin' |
| 135 | + ); |
| 136 | + |
| 137 | + chain.plugin(CHAIN_ID.PLUGIN.MANIFEST).use(RspackManifestPlugin, [ |
| 138 | + { |
| 139 | + fileName, |
| 140 | + generate: generateManifest(htmlPaths), |
| 141 | + }, |
| 142 | + ]); |
| 143 | + }); |
| 144 | + }, |
| 145 | +}); |
0 commit comments