Update zen-observable-ts
to eliminate transitive dependency on @types/zen-observable
#8695
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This update includes apollographql/zen-observable-ts#152, and should fix issue #8688 because Apollo Client no longer generates code in
dist/**/*.d.ts
files with type references to the@types/zen-observable
package:/// <reference types="zen-observable" />
With these references gone, consumers of
zen-observable-ts
should not need to add@types/zen-observable
as a dependency. In fact, the@types/zen-observable
package is no longer involved at all. Thus, #8688 should be fixed.Since this could be a disruptive type-level change for anyone who was previously depending on the global declaration of the
ZenObservable
namespace, I'm targeting therelease-3.5
branch so we can test before releasing.