plesiecki / browserslist-config-seek

Shareable Browserslist config for SEEK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status npm semantic-release Commitizen friendly

browserslist-config-seek

Shareable Browserslist config for SEEK.

$ npm install --save-dev browserslist-config-seek

Usage

If you're directly consuming this package in an application, add this to your package.json:

{
  "browserslist": [
    "extends browserslist-config-seek"
  ]
}

When manually configuring a tool that uses Browserslist, importing this package returns the array of supported browsers.

For example, when configuring babel-preset-env via JavaScript:

{
  presets: [
    ['env', {
      targets: {
        browsers: require('browserslist-config-seek')
      }
    }]
  ]
}

License

MIT.

About

Shareable Browserslist config for SEEK

License:MIT License


Languages

Language:JavaScript 100.0%