.ncurc.js 603 B

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