ecma-version-validator-webpack-plugin
TypeScript icon, indicating that this package has built-in type declarations

1.2.1 • Public • Published

ecma-version-validator-webpack-plugin

npm version

A wepback plugin to verify ECMAScript version for bundle files.

This plugin is intended to verify that bundle files don't include unsupported syntaxes, so I encourage to enable this only on a production build.

Install

% npm install --save-dev ecma-version-validator-webpack-plugin

How to use

Add a ECMAVersionValidatorPlugin instance into a plugins field in webpack.config.js

  • webpack.config.js
const { ECMAVersionValidatorPlugin } = require("ecma-version-validator-webpack-plugin");

module.exports = {
    // ...
    plugins: [
      new ECMAVersionValidatorPlugin(/* options */)
    ],
}

Options

constructor

  • options.ecmaVersion
    • This is a target ECMAScript version you expect. See the avaiable versions in the Acorn's documentation. The default version is 5(ES5).
  • options.test
    • A RegExp pattern to apply this plugin. The default value is /\.(m)?js$/.

LICENCE

Readme

Keywords

Package Sidebar

Install

npm i ecma-version-validator-webpack-plugin

Weekly Downloads

3,855

Version

1.2.1

License

MIT

Unpacked Size

25.9 kB

Total Files

24

Last publish

Collaborators

  • koba04