gruntjs - How to include skins/lightgray in tinyMCE grunt bundle -
pretty simple, want run single command , necessary plugins, css , fonts inside 1 minified tinymce.min.js file
after running:
grunt bundle --themes=modern --plugins=table,paste
i got minified tinymce plugins, without skins/lightgray include css, fonts, images
how can that?
found answer myself,
added param skin_url:
skin_url: './unpackaged-dependencies/tinymce/skins/lightgray'
and include original tinymce css , fonts
so tinymce.full.min.js , skins package should on same level
Comments
Post a Comment