ckeditor / ckbuilder

The development repository of CKBuilder, a command line builder for CKEditor 4.
Other
19 stars 11 forks source link

Allow to include plugins without inlining into ckeditor.js #19

Closed mlewand closed 3 years ago

mlewand commented 8 years ago

Currently all the plugins listed in <preset>-build-config.js are inlined into ckeditor.js. The only way to get additional plugins into ckeditor/plugins directory, is to put --all flag which will include all the plugins.

It would be nice to provide an option to include just some plugins, but without inlining them into ckeditor.js.

whity commented 3 years ago

Hello,

this would be great, any development here?

thanks.

f1ames commented 3 years ago

Hi @whity, this was covered recently in #29.

You can now use required_plugins option, like -r scayt,autolink which will add plugins to the build in minifed form but not bundled into ckeditor.js file.

whity commented 3 years ago

Hi @f1ames , great, thank you.