Add Pip3 support (#75)

* add pip3 support

* add pip3 e2e

* chore: rename var
This commit is contained in:
Sahil Bansal
2025-12-03 20:28:45 +05:30
committed by GitHub
parent c47cb30de0
commit 50d7b55445
7 changed files with 122 additions and 2 deletions
+5
View File
@@ -7,6 +7,7 @@ const (
eventCommandPnpm = "pmg_command_pnpm"
eventCommandYarn = "pmg_command_yarn"
eventCommandPip = "pmg_command_pip"
eventCommandPip3 = "pmg_command_pip3"
eventCommandUv = "pmg_command_uv"
eventCommandPoetry = "pmg_command_poetry"
@@ -39,6 +40,10 @@ func TrackCommandPip() {
TrackEvent(eventCommandPip)
}
func TrackCommandPip3() {
TrackEvent(eventCommandPip3)
}
func TrackCommandUv() {
TrackEvent(eventCommandUv)
}