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
1. Native npm modules (those written in C, not JavaScript) need to be compiled, and here we have two different compilation targets for them. Those used in application need to be compiled against electron runtime, and all `devDependencies` need to be compiled against your locally installed node.js. Thanks to having two files this is trivial.
34
+
2. When you package the app for distribution there is no need to add up to size of the app with your `devDependencies`. Here those are always not included (because reside outside the `app` directory).
35
+
15
36
# Configuration
16
37
## In short
17
-
1. Ensure that required fields are specified in the application `package.json`:
38
+
1. Ensure that required fields are specified in the application `package.json`:
18
39
19
40
Standard `name`, `description`, `version` and `author`.
0 commit comments