rsnext/packages/next/build/webpack/plugins/hashed-chunk-ids-plugin.ts

28 lines
719 B
TypeScript
Raw Normal View History

import { Compiler, Plugin } from 'webpack'
import { createHash } from 'crypto'
export class HashedChunkIdsPlugin implements Plugin {
buildId: string
constructor(buildId: string) {
this.buildId = buildId
}
apply(compiler: Compiler) {
compiler.hooks.compilation.tap('HashedChunkIdsPlugin', compilation => {
compilation.hooks.beforeChunkIds.tap('HashedChunkIdsPlugin', chunks => {
for (const chunk of chunks) {
if (chunk.id === null && chunk.name) {
const id = chunk.name.replace(this.buildId, '')
chunk.id = createHash('md4')
.update(id)
.digest('hex')
.substr(0, 4)
}
}
})
})
}
}