fix: lock webpack version

This commit is contained in:
fryorcraken.eth 2022-08-08 11:06:03 +10:00
parent a1d83ae85e
commit df077dec3e
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 14 additions and 0 deletions

14
web-chat/.pnpmfile.cjs Normal file
View File

@ -0,0 +1,14 @@
function readPackage(pkg) {
// Freeze webpack transient dependency
if (pkg.dependencies.webpack) {
pkg.dependencies.webpack = '5.65.0';
}
return pkg
}
module.exports = {
hooks: {
readPackage
}
}