https://github.com/vagusx/es-compatible-loader
webpack loader for check es compatiblity for dependencies especially for node_modules
https://github.com/vagusx/es-compatible-loader
es-compatiblity js-compatiblity node-modules webpack webpack-loader
Last synced: 5 months ago
JSON representation
webpack loader for check es compatiblity for dependencies especially for node_modules
- Host: GitHub
- URL: https://github.com/vagusx/es-compatible-loader
- Owner: vagusX
- License: mit
- Created: 2018-09-20T09:21:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-29T18:13:42.000Z (over 5 years ago)
- Last Synced: 2025-03-02T00:19:18.073Z (10 months ago)
- Topics: es-compatiblity, js-compatiblity, node-modules, webpack, webpack-loader
- Language: JavaScript
- Homepage: https://vagusx.github.io/es-compatible-loader/
- Size: 200 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# ES Compatible Loader

[](https://circleci.com/gh/vagusX/es-compatible-loader)
[](https://codecov.io/gh/vagusX/es-compatible-loader)
[](https://www.npmjs.com/package/es-compatible-loader)
[](https://greenkeeper.io/)
## Installation
```bash
$ npm install es-compatible-loader --save-dev
```
## Usage
```js
// ...webpack config
rules: [
{
test: /\.js/,
include: /node_modules/,
use: {
loader: 'es-compatible-loader',
options: {
hintLevel: 'error' | 'warning'
}
}
}
]
```
[](https://github.com/feross/standard)