Weyert de Boer

Results 330 comments of Weyert de Boer

Looks like it limited the number of `git` processes running. Cpu usage also seems a bit less. Progress. I would say. Never noticed before, If I quite `turbo` I do...

@NicholasLYang I can confirm the original issue is resolved in 1.3.3 only I haven't been to get `watch` working: ```bash pnpm exec turbo watch build --filter={packages/\*} • Packages in scope:...

Yeah, I think I might have a similar problem but for the `codegen`-task is in the same package, e.g. using: ```json { "$schema": "https://turbo.build/schema.json", "extends": ["//"], "pipeline": { "generate": {...

Would it be possible to merge this? Looks useful now that Elements supports vendor extensions

Yeah, I think is an awesome idea :)

PostHog supports the following: ```javascript posthog.capture('[event-name]', {property1: 'value', property2: 'another value'}); ``` See: https://posthog.com/docs/integrate/client/js#capture

Optimizily appears to support something similar: ```javascript var attributes = { logged_in: true }; var user = optimizelyClient.createUserContext('user123', attributes); var tags = { category: 'shoes', purchase_count: 2 }; user.trackEvent("my_purchase_event_key", tags);...

FlagShip.io appears to support some sort of track events via: ```javascript import { HitType, EventCategory } from "@flagship.io/js-sdk"; visitor.sendHit({ type: HitType.EVENT, //or "EVENT" category: EventCategory.USER_ENGAGEMENT, // or EventCategory.ACTION_TRACKING action: "click",...

DevCycle supports tracking events: ```javascript const event = { type: 'my_event_type', // this is required date: new Date(), target: 'my_target', value: 5, metaData: { key: 'value' } } dvcClient.track(event) dvcClient.flushEvents()...