You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[ ] Hot Reloading -> Waiting for official support of react-scripts
31
32
33
+
## Important notice:
34
+
35
+
This project contains another lib project in its files. This lib project is included via the 'file' operator in the package.json. This leads to problems with react and material ui and updating the package-lock.json
36
+
37
+
To solve this Problems the install and start commands are altered
38
+
39
+
### To Install:
40
+
41
+
```npm run-script installLocal```
42
+
43
+
What it does:
44
+
45
+
- removes package-lock.json
46
+
- removes **lib** module from node_modules in **main project**
47
+
- installs npm modules in **lib**
48
+
- builds **lib**
49
+
- installs npm modules in **main project**
50
+
51
+
### To start:
52
+
53
+
```npm start```
54
+
55
+
What it does:
56
+
57
+
- links react in main to react in **lib** node_modules
58
+
- removes **@material-ui** package from **lib** projects node_modules
0 commit comments