rsnext/packages/next/build/webpack/plugins/unlink-removed-pages-plugin.ts
2020-05-18 15:24:37 -04:00

37 lines
1 KiB
TypeScript

import { join } from 'path'
import { promises } from 'fs'
import { IS_BUNDLED_PAGE_REGEX } from '../../../next-server/lib/constants'
import { Compiler } from 'webpack'
// Makes sure removed pages are removed from `.next` in development
export class UnlinkRemovedPagesPlugin {
prevAssets: any
constructor() {
this.prevAssets = {}
}
apply(compiler: Compiler) {
compiler.hooks.afterEmit.tapAsync(
'NextJsUnlinkRemovedPages',
(compilation, callback) => {
const removed = Object.keys(this.prevAssets).filter(
(a) => IS_BUNDLED_PAGE_REGEX.test(a) && !compilation.assets[a]
)
this.prevAssets = compilation.assets
Promise.all(
removed.map(async (f) => {
const path = join((compiler as any).outputPath, f)
try {
await promises.unlink(path)
} catch (err) {
if (err.code === 'ENOENT') return
throw err
}
})
).then(() => callback(), callback)
}
)
}
}