Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop publishing non-essential files (like tests and gruntfile) to npm
I noticed that we were publishing a bunch of unnecessary files (like the `test` directory and `gruntfile.js`) to npm. At best, this wastes space. At worst, we could accidentally publish some sensitive file (though that's unlikely). Tested this by: 1. Ran `npm pack` and verified that no unnecessary files were included 2. Copied the resulting tarbal, `airtable-0.7.0.tgz`, into a temporary directory 3. Ran `npm i airtable-0.7.0.tgz` 4. Verified that `node -p "require('airtable')"` didn't break See documentation for the [`files`][1] key in `package.json` for more info here. [1]: https://docs.npmjs.com/files/package.json#files
- Loading branch information