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
npm WARN notsup Not compatible with your operating system or architecture: [email protected]
133
+
```
134
+
135
+
You can suppress them by adding the `no-optional` switch:
136
+
137
+
```
138
+
npm install --no-optional
139
+
```
140
+
141
+
Further reading: [Stack Overflow](https://stackoverflow.com/questions/36725181/not-compatible-with-your-operating-system-or-architecture-fsevents1-0-11)
142
+
143
+
### Resolving dependencies
144
+
145
+
When installing for the first time, you can get warnings which need to be resolved:
146
+
147
+
```
148
+
npm WARN [email protected] requires a peer of babel-eslint@^8.0.1 but none was installed.
149
+
npm WARN [email protected] requires a peer of eslint@^4.0 but none was installed.
150
+
npm WARN [email protected] requires a peer of react-intl-redux@^0.7 but none was installed.
151
+
npm WARN [email protected] requires a peer of react-responsive@^4 but none was installed.
Further reading: [Stack Overflow](https://stackoverflow.com/questions/46602286/npm-requires-a-peer-of-but-all-peers-are-in-package-json-and-node-modules)
182
+
127
183
128
184
## Publishing to GitHub Pages
129
185
You can publish the GUI to github.io so that others on the Internet can view it.
0 commit comments