UNPKG

334 BPlain TextView Raw
1import fs from 'fs-extra'
2import path from 'path'
3
4import * as logger from './log'
5import { Presta } from './types'
6
7export function removeBuiltStaticFile(file: string, config: Presta) {
8 logger.debug({
9 label: 'debug',
10 message: `removing old static file ${file}`,
11 })
12
13 fs.remove(path.join(config.staticOutputDir, file))
14}