feat/#55 bun support (#56)

* add support for bun package manager

* update readme
This commit is contained in:
Sahil Bansal
2025-07-28 17:23:32 +05:30
committed by GitHub
parent 49b2371cc3
commit c486834c2e
9 changed files with 153 additions and 2 deletions
+5
View File
@@ -3,6 +3,7 @@ package analytics
const (
eventRun = "pmg_command_run"
eventCommandNpm = "pmg_command_npm"
eventCommandBun = "pmg_command_bun"
eventCommandPnpm = "pmg_command_pnpm"
eventCommandPip = "pmg_command_pip"
@@ -19,6 +20,10 @@ func TrackCommandNpm() {
TrackEvent(eventCommandNpm)
}
func TrackCommandBun() {
TrackEvent(eventCommandBun)
}
func TrackCommandPnpm() {
TrackEvent(eventCommandPnpm)
}