jarslab / babel-maven-plugin

Babel transcription plugin for Maven
MIT License
25 stars 8 forks source link

Presets with options #18

Closed samuei closed 4 years ago

samuei commented 4 years ago

From what I've read, babel presets since 6.13 can have options, e.g.

{ "presets": [ [ "es2015", { "modules": false } ] ] }

Is there a way to pass these options through this plugin? It seems like plugin is parsing the preset string with .split(','), which would keep that from being an option.

milpol commented 4 years ago

Valid point. To keep backward compatibility I added the formatPresets option which (once set to false) disables the formatting. Changes are available from version 1.6.

samuei commented 4 years ago

Awesome!