forcefully add temp dependency to elm-webpack-loader

This commit is contained in:
notgne2 2021-02-14 16:34:52 -07:00
parent 78cb5e0b2c
commit ed24cfc67c
No known key found for this signature in database
GPG Key ID: BB661E172B42A7F8
2 changed files with 13 additions and 0 deletions

1
pnpm-lock.yaml generated
View File

@ -3377,6 +3377,7 @@ packages:
dependencies:
loader-utils: 1.4.0
node-elm-compiler: 5.0.5
temp: 0.9.4
dev: false
engines:
node: '>=8.0.0'

12
pnpmfile.js Normal file
View File

@ -0,0 +1,12 @@
module.exports = {
hooks: {
readPackage(pkg) {
switch (pkg.name) {
case 'elm-webpack-loader':
pkg.dependencies['temp'] = '^0.9.4'
break
}
return pkg
}
}
}