forked from cybersemics/em
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.ncurc.js
47 lines (40 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
37
38
39
40
41
42
43
44
45
46
47
/*
ncu config
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: [
'typedoc',
'react-dnd',
'react-dnd-html5-backend',
'react-dnd-multi-backend',
'react-dnd-touch-backend',
'react-dnd-test-utils',
// Expo requires the expo-clipboard version to be compatible with using SDK version
'expo-clipboard',
// 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',
// jest-puppeteer requires puppeteer <v10
'puppeteer',
// Broken: ^6.0.1 → ^7.0.5
// InstalledClock not exported; need to troubleshoot
'@sinonjs/fake-timers',
// ts-key-enum v3 does not work with @babel/plugin-transform-typescript which is a subdependency of react-scripts
//
// └─┬ [email protected]
// └─┬ [email protected]
// └─┬ @babel/[email protected]
// └── @babel/[email protected]
//
// https://gitlab.com/nfriend/ts-key-enum#which-version-should-i-use
'ts-key-enum',
],
}