-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy path.ncurc.js
36 lines (28 loc) · 1.08 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
module.exports = {
reject: [
// author of this library decided to corrupt it for political reasons (version 6.6.6 is the bad one)
"faker",
"@types/faker",
// newer version has different API, should probably be easy to rework how it is used upon upgrade
// @see https://github.com/FirebaseExtended/reactfire/blob/main/docs/upgrade-guide.md
// "reactfire",
// will probably require update of components that use the older and testing of the forms
"react-hook-form",
// requires rework of routes to be relative and replacing some basic components like Switch
"react-router-dom",
// minor type inconsistency, should be easy to upgrade
"@types/yup",
"yup",
// quite a leap in versions, should probably be easy to adjust to newer API
"react-dnd",
"react-dnd-html5-backend",
// dev run warnings
"ical-generator",
// AnimateMap related, the code there is all kinds of chaos
"pixi-viewport",
"pixi-virtual-joystick",
"pixi.js",
// Don't upgrade prettier until after the node 16 upgrade
"prettier",
],
};