1.0.5 • Published 5 years ago

es3-compatible-webpack-plugin v1.0.5

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

ES3-compatible-webpack-plugin

npm javascript

A Webpack plugin used for converting code to be ES3-compatible with less overheads. For instance, transform object members definitions with keyword into quotes wrapped string, or eliminate trailing commas in arrays or objects.

var obj = { extends: 1 }; /** => var obj = { 'extends': 1 }; */
obj.extends; /** => obj['extends'] */

var arr = [1, 2,]; /** => var arr = [1, 2]; */
var obj = {a: 1,}; /** => var obj = {a: 1}; */

The first step before using this plugin is to install it:

npm install --save-dev es3-compatible-webpack-plugin

And then, setup it in your Webpack configuration:

/** webpack.config.js */
const ES3CompatibleWebpackPlugin = require('es3-compatible-webpack-plugin').default;

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

:fuelpump: How to contribute

Have an idea? Found a bug? See how to contribute.

:scroll: License

MIT © aleen42

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago