Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/telus/browserslist-config
TELUS Shared Browserslist Config
https://github.com/telus/browserslist-config
browserslist config telusdigital
Last synced: 5 days ago
JSON representation
TELUS Shared Browserslist Config
- Host: GitHub
- URL: https://github.com/telus/browserslist-config
- Owner: telus
- License: mit
- Created: 2018-04-19T20:58:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-17T20:46:04.000Z (almost 6 years ago)
- Last Synced: 2024-11-05T05:19:22.240Z (15 days ago)
- Topics: browserslist, config, telusdigital
- Language: JavaScript
- Homepage: https://telus.com/digital
- Size: 12.7 KB
- Stars: 1
- Watchers: 11
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TELUS Shared Browserslist Config
[![version][npm-image]][npm-url] [![Build Status][circle-image]][circle-url]
## What is browserslist?
> "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-preset-env"
See [browserslist](https://github.com/browserslist/browserslist).
## Install
```sh
npm install @telusdigital/browserslist-config --save-dev
```## Set up
Create a `browserslist` file in the root of your project.
Add the following line to extend from this config:```config
extends @telusdigital/browserslist-config
```You can also add your own queries after the `extends`, though this is not recommended.
## Which browsers do I support?
You can use the `browserslist` CLI to inspect the browsers targeted by the queries in your `browserslist` config.
```bash
npx browserslist # Output a list of targeted browsers
npx browserslist --coverage # Total coverage of targeted browsers
```For local development, also run:
```bash
npm run setup-local
```---
> Github: [@telus](https://github.com/telus) •
> Twitter: [@telusdigital](https://twitter.com/telusdigital)[circle-url]: https://circleci.com/gh/telus/browserslist-config
[circle-image]: https://img.shields.io/circleci/project/github/telus/browserslist-config/master.svg?style=for-the-badge&logo=circleci[npm-url]: https://www.npmjs.com/package/@telus/browserslist-config
[npm-image]: https://img.shields.io/npm/v/@telus/browserslist-config.svg?style=for-the-badge&logo=npm