mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-09 02:44:49 +00:00
Send telemetry events for pnpm usage (#13748)
This PR adds telemetry events for pnpm usage, similar to what we did for Yarn in #12785. Seems like useful information to have. Release Notes: - N/A
This commit is contained in:
parent
8ea2bd4c7e
commit
eb845ee201
1 changed files with 4 additions and 0 deletions
|
@ -202,6 +202,10 @@ impl Telemetry {
|
|||
event_coalescer: EventCoalescer::new(clock.clone()),
|
||||
max_queue_size: MAX_QUEUE_LEN,
|
||||
worktree_id_map: WorktreeIdMap(HashMap::from_iter([
|
||||
(
|
||||
"pnpm-lock.yaml".to_string(),
|
||||
ProjectCache::new("pnpm".to_string()),
|
||||
),
|
||||
(
|
||||
"yarn.lock".to_string(),
|
||||
ProjectCache::new("yarn".to_string()),
|
||||
|
|
Loading…
Reference in a new issue