Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix package.json to include only the needed files
Before: ``` > du -sh node_modules/thrift 28M node_modules/thrift ``` After: ``` > mkdir -p /tmp/thrift-module > cp -r node_modules/thrift/lib/nodejs/{lib,README.md} /tmp/thrift-module > du -sh /tmp/thrift-module 208K /tmp/thrift-module ``` This closes #672
- Loading branch information