ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

lebab

by inkless ALL

Lebab plugin for sublime text 3

Labels lebab, es5, es6, convert

Details

Installs

  • Total 583
  • Win 191
  • Mac 316
  • Linux 76
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

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 your 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 enables the safest transforms from Lebab, but you can enable all or any of them by changing the transforms option in your user settings.

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

Here is the active transforms by default:

{
  "transforms": [
    "arrow",
    "arg-spread",
    "obj-method",
    "obj-shorthand",
    "no-strict",
    "commonjs"
  ]
}

Contributing

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

Pull requests are also encouraged.