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

0.2.13 • Public • Published

rollup-plugin-ecma-version-validator

npm version

A rollup 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 rollup-plugin-ecma-version-validator

How to use

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

  • rollup.config.js
import { ecmaVersionValidator } from "rollup-plugin-ecma-version-validator";

export default {
  input: "index.js",
  plugins: [ecmaVersionValidator({ /* options */ })],
};

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).

LICENCE

Package Sidebar

Install

npm i rollup-plugin-ecma-version-validator

Weekly Downloads

377

Version

0.2.13

License

MIT

Unpacked Size

14 kB

Total Files

15

Last publish

Collaborators

  • koba04