mirror of
https://github.com/waku-org/examples.waku.org.git
synced 2025-02-23 11:18:06 +00:00
15 lines
237 B
JavaScript
15 lines
237 B
JavaScript
function readPackage(pkg) {
|
|
// Freeze webpack transient dependency
|
|
if (pkg.dependencies.webpack) {
|
|
pkg.dependencies.webpack = '5.65.0';
|
|
}
|
|
|
|
return pkg
|
|
}
|
|
|
|
module.exports = {
|
|
hooks: {
|
|
readPackage
|
|
}
|
|
}
|