mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
4a8a811cc1
[web] after changing settings invalidate babel cache on webpack startup GitOrigin-RevId: 3d83c56d119bcbbd91ea71b0a85ad8e0a767b679
24 lines
815 B
JavaScript
24 lines
815 B
JavaScript
const fs = require('fs')
|
|
const Path = require('path')
|
|
const logger = require('@overleaf/logger')
|
|
const Settings = require('@overleaf/settings')
|
|
|
|
module.exports = function invalidateBabelCacheIfNeeded() {
|
|
const cachePath = Path.join(__dirname, '../../node_modules/.cache')
|
|
const statePath = Path.join(cachePath, 'last-overleafModuleImports.json')
|
|
let lastState = ''
|
|
try {
|
|
lastState = fs.readFileSync(statePath, { encoding: 'utf-8' })
|
|
} catch (e) {}
|
|
|
|
const newState = JSON.stringify(Settings.overleafModuleImports)
|
|
if (lastState !== newState) {
|
|
logger.warn(
|
|
{},
|
|
'Detected change in overleafModuleImports, purging babel cache!'
|
|
)
|
|
fs.rmSync(cachePath, { recursive: true, force: true, maxRetries: 5 })
|
|
fs.mkdirSync(cachePath)
|
|
fs.writeFileSync(statePath, newState)
|
|
}
|
|
}
|