Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

es5to3-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

es5to3-webpack-plugin

Transforms JavaScript from ES5 to ES3 bundled by webpack.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
82
increased by182.76%
Maintainers
1
Weekly downloads
 
Created
Source

es5to3-webpack-plugin

A Webpack plugin that transforms ES5 JavaScript output to ES3. This plugin supports also source maps and handles source map transformation if needed.

Installation

npm install es5to3-webpack-plugin

Usage

In webpack.config.js:


var ES5to3OutputPlugin = require("es5to3-webpack-plugin");
module.exports = {

    // enable source map generation, if necessary
    devtool: "source-map",

    ...
    plugins: [
        new ES5to3OutputPlugin()
    ]
};

Options

options.test

Regular expression that will be used to filter the files within the output stream. Default: defines the file filter, default: /.js$/i

(Hint: Only JavaScript can be transformed.)

Keywords

FAQs

Package last updated on 07 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc