Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(api): do not bundle dev dependencies in prod
Previously, Fishery and nock were bundled into the production bundle even though the functions in files that imported them were NOT referenced in the production code. We can set `sideEffects: false` in `package.json` to treat all files as having no side-effects. I don't _think_ that we have any files that would have side-effects, but let's see how it goes. Related to #83
- Loading branch information