mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 11:52:59 +03:00
22 lines
660 B
JavaScript
22 lines
660 B
JavaScript
|
const IGNORED_DEPS = ['react-native-url-polyfill', 'react-native-get-random-values']
|
||
|
|
||
|
const unusedIgnores = new Set(IGNORED_DEPS)
|
||
|
module.exports.hooks = {
|
||
|
readPackage: (pkg, context) => {
|
||
|
for (const ignored of IGNORED_DEPS) {
|
||
|
if (pkg.dependencies[ignored]) {
|
||
|
delete pkg.dependencies[ignored]
|
||
|
context.log(`Ignoring dependency ${ignored} in ${pkg.name}`)
|
||
|
unusedIgnores.delete(ignored)
|
||
|
}
|
||
|
}
|
||
|
return pkg
|
||
|
},
|
||
|
afterAllResolved(lockfile, context) {
|
||
|
if (unusedIgnores.size > 0) {
|
||
|
context.log(`Unused dependency ignore declarations: ${Array.from(unusedIgnores).join(', ')}`)
|
||
|
}
|
||
|
return lockfile
|
||
|
},
|
||
|
}
|