mirror of
https://github.com/status-im/js-waku-examples.git
synced 2025-01-10 22:16:28 +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
|
|
}
|
|
}
|