node-hackrf
node-hackrf copied to clipboard
Build project with node 9 & npm 5
Found out that building the project works with node 9 (with deprecation warnings) but is broken on node >= 10. So I made the following improvements:
- Add
.nvmrcso nvm users can easily install and use right version of node & npm (by runningnvm installin the project directory) - node 9 ships with npm 5 which generates lockfiles -> added
package-lock.jsonautogenerated by npm - Add
.npmignoreso that.nvmrcis not published to npm registry.