Skip to content

Version 2.0

Compare
Choose a tag to compare
@derrickreimer derrickreimer released this 30 Dec 22:24
  • Convert to TypeScript
  • Breaking change: We now export individual functions instead of putting everything under a default export.
// instead of this...
import Fathom from 'fathom-client'

// do this
import * as Fathom from 'fathom-client'
// or this
import { load, trackPageview } from 'fathom-client'

v1.0.0...v2.0.0