aziz / lebab-sublime

Lebab plugin for sublime text 3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lebab for Sublime Text 3

A plugin to convert ES5 code to ES6 code.

##Installation ####Prerequisites The plugin requires an npm module lebab installed in you machine locally.

  1. Install Node.js
  2. Install lebab
npm install -g lebab

####Install plugin Please use Package Control to install the plugin. This will ensure that the plugin will be updated when new versions are available. If you want to install from source so you can modify the source code, you probably know what you are doing so we won’t cover that here.

To install via Package Control, do the following:

  1. Within Sublime Text, bring up the Command Palette and type install. Among the commands you should see Package Control: Install Package. If that command is not highlighted, use the keyboard or mouse to select it. There will be a pause of a few seconds while Package Control fetches the list of available plugins.
  2. When the plugin list appears, type lebab. Among the entries you should see Lebab. If that entry is not highlighted, use the keyboard or mouse to select it.

####Install manually (Optional) Download this repository to your sublime's package:

Windows:

%APPDATA%\Sublime Text 3\Packages

OS X:

~/Library/Application Support/Sublime Text 3/Packages

Linux:

~/.config/sublime-text-3/packages

Commands

Command palette:

  • Lebab: convert ES5 to ES6

Options

Transforms:

This plugin only enable the sate transforms from lebab (except exponent since it's ES7), but you can enable all or any of them by changing the transforms option in you user settings.

NOTE: To see a full list of transforms run lebab -h in your terminal

{
  "transforms": [
    "arrow",
    "for-of",
    "arg-spread",
    "obj-method",
    "obj-shorthand",
    "no-strict",
    "commonjs",
    "exponent",
    "multi-var"
  ]
}

Contributing

If you find any bugs feel free to report them here.

Pull requests are also encouraged.

About

Lebab plugin for sublime text 3

License:MIT License


Languages

Language:JavaScript 52.7%Language:Python 47.3%