Lebab ES6 Transform
A sublime package to easily transform your code to ES6
Details
Installs
- Total 727
- Win 443
- Mac 211
- Linux 73
Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 1 | 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 | 2 | 0 | 1 | 0 | 1 | 0 | 0 | 0 |
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 | 1 | 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 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Lebab ES6 Transform for SublimeText 3
A sublime package to easily transform your code to ES6
Installation
Note
The plugin uses a bundled version of Lebab using zeit/pkg which produces three executables files for Windows, Linux and MacOs. Therefor this package NO longer needs the following:
- No longer needs Nodejs. The bundled lebab versions are already packed with Nodejs v8.9.0
- No longer needs Lebab package and any of it's dependencies. The bundles lebab already includes all necessary dependencies.
Install plugin
Please use Package Control to install the plugin.
- Within Sublime Text, bring up the Command Palette and type
install
. Among the commands you should seePackage 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. - When the plugin list appears, type
lebab
. Among the entries you should seeLebab-ES6-Transform
. If that entry is not highlighted, use the keyboard or mouse to select it.
Options
format_on_save:
This will format your js file on each save. Default: true
show_warnings:
This will show any lebab warnings on your sublime panel. Default: true
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 visit Lebab
Here are the default settings:
{
// runs lebab on the current js file upon saving
"format_on_save": true,
// shows the lebab warning message via sublime panel
"show_warnings": true,
// safe transforms https://github.com/lebab/lebab#safe-transforms
"transforms": [
"arrow",
"arg-rest",
"obj-method",
"obj-shorthand",
"class",
"let",
"includes",
"template",
"for-of",
"exponent",
"default-param",
"commonjs"
]
}
Contributing
If you find any bugs feel free to report them here.
Pull requests are also encouraged.