mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
f2c2519159
The prepares for next-server. I also took this as an opportunity to get all build directory paths from a single location, as they were previously scattered across webpack/babel plugins and loaders.
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
import { ConcatSource } from 'webpack-sources'
|
|
|
|
const isImportChunk = /^chunks[/\\]/
|
|
const matchChunkName = /^chunks[/\\](.*)$/
|
|
|
|
class DynamicChunkTemplatePlugin {
|
|
apply (chunkTemplate) {
|
|
chunkTemplate.plugin('render', function (modules, chunk) {
|
|
if (!isImportChunk.test(chunk.name)) {
|
|
return modules
|
|
}
|
|
|
|
const chunkName = matchChunkName.exec(chunk.name)[1]
|
|
const source = new ConcatSource()
|
|
|
|
source.add(`
|
|
__NEXT_REGISTER_CHUNK('${chunkName}', function() {
|
|
`)
|
|
source.add(modules)
|
|
source.add(`
|
|
})
|
|
`)
|
|
|
|
return source
|
|
})
|
|
}
|
|
}
|
|
|
|
export default class DynamicChunksPlugin {
|
|
apply (compiler) {
|
|
compiler.plugin('compilation', (compilation) => {
|
|
compilation.chunkTemplate.apply(new DynamicChunkTemplatePlugin())
|
|
|
|
compilation.plugin('additional-chunk-assets', (chunks) => {
|
|
chunks = chunks.filter(chunk =>
|
|
isImportChunk.test(chunk.name) && compilation.assets[chunk.name]
|
|
)
|
|
|
|
chunks.forEach((chunk) => {
|
|
// This is to support, webpack dynamic import support with HMR
|
|
const copyFilename = `chunks/${chunk.name}`
|
|
compilation.additionalChunkAssets.push(copyFilename)
|
|
compilation.assets[copyFilename] = compilation.assets[chunk.name]
|
|
})
|
|
})
|
|
})
|
|
}
|
|
}
|