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.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(plugin-gtag): update gtag plugin to modern SPA recommendations #8143
refactor(plugin-gtag): update gtag plugin to modern SPA recommendations #8143
Changes from all commits
2382178
9ea3476
e3b9137
cda7b8a
961966e
b4780e2
1631f43
1bd3edf
bd0683e
88e9407
6d49f61
3cb8773
8ce5d72
be36601
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note: this type is only used internally, and is not exposed by the gtag package, so it shouldn't affect anyone.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
side note: it doesn't work in dev/deploy-preview because we don't load gtag script there
We should probably expose a
gtag | undefined
instead of justgtag
, to make it clear that user has to program defensively against this apiThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not very satisfied with this setup atm, as it puts the burden to the site owner to reference the appropriate packages, but good enough to move on
What I wish is to have the type auto reference itself if the preset-classic is installed (since it contains the gtag plugin, even though it might be disabled).
I'd like to have references: preset => plugin gtag =>
@types/gtag.js
For now, if I add such a ref in
index.ts
, it gets stripped out from the.d.ts
file, unfortunately.@Josh-Cena I'll merge as it it but if you have any idea to make that site ref un-necessary that would be cool.