Skip to content

v2.0.0

Compare
Choose a tag to compare
@joeldenning joeldenning released this 13 Aug 17:24
· 3 commits to main since this release

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

Maintenance

  • Add CI/CD (#17)