New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

babel-brunch

Package Overview
Dependencies
Maintainers
4
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-brunch

Brunch plugin to turn latest ECMAScript standard code into vanilla ES5 with no runtime required.

  • 7.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.5K
increased by3.71%
Maintainers
4
Weekly downloads
 
Created
Source

babel-brunch

Brunch plugin using Babel to turn latest ECMAScript standard code into vanilla ES5 with no runtime required.

All the .js files in your project will be run through the babel compiler, except those it is configured to ignore, unless you use the pattern option.

Additionally, starting Brunch 2.7, babel-brunch will also compile NPM dependencies.

Installation

npm install --save-dev babel-brunch

Configuration

babel-preset-env (a Babel preset that can automatically determine the plugins and polyfills you need based on your supported environments) is used by default.

The default behavior without options runs all transforms (behaves the same as babel-preset-latest).

Optionally, you can configure the preset for your needs:

module.exports.plugins = {
  babel: {
    presets: [['env', {
      targets: {
        browsers: ['last 2 versions', 'safari >= 7']
      }
    }]]
  }
}

Read more about env's options.

Using React or any other plugin

Install a plugin:

npm install --save-dev babel-preset-react

Then, make sure Brunch sees it:

module.exports.plugins = {
  // ...
  babel: {
    presets: ['env', 'react']
  }
}

Ignoring node modules

module.exports.plugins = {
  // ...
  babel: {
    ignore: [
      /^node_modules/,
      'app/legacyES5Code/**/*'
    ]
  }
}

Changing which files would be compiled by Babel

module.exports.plugins = {
  // ...
  babel: {
    pattern: /\.(js|vue)$/ // By default, JS|JSX|ES6 are used.
  }
}

Set Babel options in your Brunch config (such as brunch-config.js) except for filename and sourceMap which are handled internally.

Change Log

See release notes page on GitHub

License

ISC

Keywords

FAQs

Package last updated on 26 Mar 2019

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