David Wells

Results 183 comments of David Wells

Ah super cool setup you have! The first-party server/HTTP cookies is a good one. I'd love to see that setup if there's a repo to checkout. 😃 So there is...

Hey there! Thanks for the report on this. I've been trying to refactor all the package builds to use `microbundle` but running into some quirks with how it handles default...

Looks like this is an ongoing issue for the regenerator polyfill https://github.com/facebook/regenerator/issues/378

Just updated all of the build deps. Can ya'll try again with latest `[email protected]` I'm hoping this fixes the issue

I see what you mean. I'll try to come up with something around this when I get a chance

Hello there! Good question I just pushed a release in `[email protected]` that makes it easy with the `enabled` flag. ```diff googleAnalytics({ trackingId: 'ua-111-22222', + enabled: false, }) ``` This will...

Hello @layonez I like this idea. I don't think its automagically baked in but you can do this via `.on` listeners or with a custom plugin. Right now you can...

Hey, @ian interesting idea. I will think about how this might work. The way I've seen folks doing this is by conditional loading of the plugins array like so: ```js...

Added this to the docs https://getanalytics.io/conditional-loading/#by-environment

Nice plugin! --- Yeah, the typescript setup is odd. The types are generated from JSdoc with a custom template [here](https://github.com/DavidWells/analytics/blob/master/packages/analytics-core/package.json#L29) then post-processed [here](https://github.com/DavidWells/analytics/blob/master/packages/analytics-core/scripts/types.js) because the jsdoc template isn't quite right...