v2.0.0
Breaking Changes
- Remove npmRegistry option. Document registryFetchOptions. (#16)
Previously there were two ways to pass in the npm registry to use: npmRegistry
and registryFetchOptions.registry
. The npmRegistry
option didn't work and there's no reason to have two ways to do this, so we removed npmRegistry
and documented registryFetchOptions.registry
instead.
To migrate:
{
- npmRegistry: "https://private-registry.com/"
+ registryFetchOptions: {
+ registry: "https://private-registry.com/"
+ }
}
Fixes
- Add missing typedefs (#15 @mstergianis)
Maintenance
- Add CI/CD (#17)