Socket
Socket
Sign inDemoInstall

buble

Package Overview
Dependencies
23
Maintainers
4
Versions
109
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    buble

The blazing fast, batteries-included ES2015 compiler


Version published
Weekly downloads
309K
decreased by-8.41%
Maintainers
4
Install size
5.53 MB
Created
Weekly downloads
 

Changelog

Source

0.20.0 (2020-03-26)

  • This is the last Buble version to work on Node v4 & v6. Going forward, support for old Node versions that reached End-of-Life will not be actively maintained. #250
  • Fix recognition of catch-declared variables (#237)
  • Prevent labels from being renamed due to let/const transpilation. (#236)
  • Fix scoping of variables declared in for loops. (#233)
  • Fix an error when transpiling for (a[0] in b). (#232)
  • Fix an error when transpiling for with an empty init. (#226)
  • Fix let/const transpilation when combined with shorthand properties. (#229)
  • Fix JSX not respecting advanced white space characters. (#218)
  • Fix name collision when transpiling A = class extends A {}. (#209)
  • Fix os-homedir dependency warnings on install. (#207)
  • Upgrade dependencies to their latest patch versions, fixing security audit warnings. (#250)

Readme

Source

Maintenance status

Bublé was created when ES2015 was still the future. Nowadays, all modern browsers support all of ES2015 and (in some cases) beyond. Unless you need to support IE11, you probably don't need to use Bublé to convert your code to ES5.

Since IE11 is an unfortunate reality for some people, we will continue to release bugfixes, but new features won't be added unless in exceptional circumstances.


Bublé

The blazing fast, batteries-included ES2015 compiler

Quickstart

Via the command line...

npm install -g buble
buble input.js > output.js

...or via the JavaScript API:

var buble = require( 'buble' );
var result = buble.transform( source ); // { code: ..., map: ... }

License

MIT

Keywords

FAQs

Last updated on 26 Mar 2020

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