AntoineW / luge

Luge
301 stars 11 forks source link

Decouple Browser #36

Closed sijad closed 1 year ago

sijad commented 1 year ago

this changes make it easier to use Luge as ESM and exclude Bowser from bundle to save 25KB

Breaking changes:

Example of usage:

luge.settings({
  cursor: {
    disabled: window.luge.browser.some(['tablet', 'mobile'])
  },
  smooth: {
    disabled: window.luge.browser.some(['tablet', 'mobile']) || browser.satisfies({ safari: '<=12' })
  }
})

console.log(luge.browser.is('mobile'));