Socket
Socket
Sign inDemoInstall

6to5-brunch

Package Overview
Dependencies
104
Maintainers
3
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    6to5-brunch

Brunch plugin to turn ES6 code into vanilla ES5 with no runtime required.


Version published
Weekly downloads
18
decreased by-57.14%
Maintainers
3
Install size
10.4 MB
Created
Weekly downloads
 

Readme

Source

6to5-brunch

Brunch plugin using 6to5 to turn ES6 code into vanilla ES5 with no runtime required.

All the .js files in your project will be run through the 6to5 compiler, except those it is configured to ignore.

Installation

npm install --save 6to5-brunch

Configuration

Set 6to5 options in your brunch config (such as brunch-config.coffee) except for filename and sourceMap which are handled internally.

Additionally, you can set an ignore value to specify which .js files in your project should not be compiled by 6to5. By default, ignore is set to /^(bower_components|vendor)/.

plugins:
	ES6to5:
		whitelist: ['arrowFunctions']
		format:
			semicolons: false
		ignore: [
			/^(bower_components|vendor)/
			'app/legacyES5Code/**/*'
		]

Change Log

See release notes page on GitHub

License

ISC

Keywords

FAQs

Last updated on 28 Jan 2015

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc