label Question please @ai
Where tools that using browserslist get relevant information about browsers? I suppose CanIUse provides such API. If yes, people that work with CanIUse gather information by hands, testing all the browsers? If not, how?
last 2 versions, not dead, > 1% or not?).caniuse repository.caniuse-db npm package.caniuse-db package releases and repack them into more compact caniuse-lite.autoprefixer npm packages has caniuse-lite in their dependencies. Every time when you install it, you install also the latest caniuse-lite. Every time when you call npm update or yarn update you update caniuse-lite..browserslistrc or browserslist key in package.json) and reads target browsers (or use default). It will be query like last 2 versions, not dead, > 1%.caniuse-lite to get list browser versions.
Most helpful comment
caniuserepository.caniuse-dbnpm package.caniuse-dbpackage releases and repack them into more compactcaniuse-lite.autoprefixernpm packages hascaniuse-litein theirdependencies. Every time when you install it, you install also the latestcaniuse-lite. Every time when you callnpm updateoryarn updateyou updatecaniuse-lite..browserslistrcorbrowserslistkey inpackage.json) and reads target browsers (or use default). It will be query likelast 2 versions, not dead, > 1%.caniuse-liteto get list browser versions.