liferay / liferay-ckeditor

Other
8 stars 49 forks source link

fix: only download extra plugins during the build #173

Closed julien closed 3 years ago

julien commented 3 years ago

Back in e2e4c50, we added a new function to download plugins that aren't included in the ckeditor-dev submodule.

The problem is that after updating the ckeditor version with the update command, new files will show in git status but our own files (skins that we create for plugins), will also be shown as deleted.

This is because we're removing the plugins/$NAME directory here and also extracting the downloaded plugin in the plugins directory.

Since these plugins are never patched, we don't need to use this downloadPlugin function in our setup our update commands, but we do need to include them in our build.

Fixes #172