Urara-Blog/node_modules/.pnpm-store/v3/files/23/e4566ae157fdae13f30a2f809c1c1d25dff4b220e26d56ba2115a8d1faf72be5dc83ddf4a6bd2e02bd97f3298be03c2b0b66288f5522458a4b8df2f0d17b6f
2022-08-14 01:14:53 +08:00

19 lines
603 B
Text

/*
Copyright 2020 Google LLC
Use of this source code is governed by an MIT-style
license that can be found in the LICENSE file or at
https://opensource.org/licenses/MIT.
*/
// We use `npx npm-check-updates` to find updates to dependencies.
// Some dependencies have breaking changes that we can't resolve.
// This config file excludes those dependencies from the checks
// until we're able to remediate our code to deal with them.
module.exports = {
reject: [
// joi v16 is the last release to support Node v10:
// https://github.com/sideway/joi/issues/2262
'@hapi/joi',
],
};