-
Notifications
You must be signed in to change notification settings - Fork 119
/
.ncurc.js
36 lines (30 loc) · 1.46 KB
/
.ncurc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
npm-check-updates config
See: https://github.com/raineorshine/npm-check-updates
Dependency notes:
- html-escaper Replace 'he' with 'html-escaper' due to bundle size.
Other small HTML entity encoder/decoders: entities, html-entities
- page-lifecycle Use https://github.com/magic-akari/page-lifecycle/tree/feat/add-types
to get Typescript types.
*/
module.exports = {
reject: [
// TypeError: TextDecoder is not a constructor
// TextDecoder is not exposed by jsdom v16
// https://github.com/jsdom/jsdom/pull/2928
// https://github.com/jsdom/whatwg-encoding/pull/11
'ipfs-http-client',
// ts-key-enum v3 does not work with @babel/plugin-transform-typescript which is a subdependency of react-scripts
// Currently v2 appears to be published to the latest tag, but keep this locked in case v3 is published to latest in the future. Minor and patch versions are safe to upgrade to.
// https://gitlab.com/nfriend/ts-key-enum#which-version-should-i-use
'ts-key-enum',
// Breaks on mobile Safari.
// undefined is not an object (evaluating signaturePad._handlePonterStart.bind')
// https://github.com/szimek/signature_pad/releases/tag/v5.0.0
'react-signature-pad-wrapper',
// customSnapshotIdentifier breaks in puppeteer snapshot tests on puppeteer v23.
// Error running image diff: Unknown Error
// https://github.com/vitest-dev/vitest/releases/tag/v2.0.0
'puppeteer',
],
}