Consider including src folder with NPM to ease Electron upgrades / Bump deps
Currently with NPM you're only shipping the compiled lib folder, not the src folder from which the compilation is made. However the install scripts shipped by default with the library are hard coded with a compile script that deletes the lib folder and then tries compiling a non-existent src folder.
Which means that when one wants to upgrade to the newest Electron or needs to recompile this lib from what NPM downloaded, it's not possible without first dropping in the src folder from github.
Also, bumping up Electron to 1.4.10 doesn't seem to cause any issues on my end.
Edit On second thought, including the src folder would be redundant. Instead, perhaps just the install script should be tweaked to not recompile through babel and to not delete the lib folder, which obviously breaks the package completely. Maybe even a mention in the readme would help alleviate some pain.
Hey thanks for filing this! I'll take a look at this today and see if I can get it resolved in the next release. I imported the NPM / deployment configuration from another module, so it definitely may not make sense to be deleting the src folder.