How to package custom plugin with "UnrealEd,EditorStyle,LevelEditor" module?

Hi all, I had write a custom plugin, It run well on editor. But how to package it to a alone game?
I had read this three thread below:

it doesn’t help.
I had tried several steps:
First, i build my custom plugin on “Development Editor” configuration. and copy the Plugin folder to new project without source, it ran well on editor and can be package. but shows “Plugin ‘Your Plugin’ failed to load because module ‘Your Module’ could not be found.” error.

Second, I think perhaps my custom plugin has program, i download a plugin from github on this link:GitHub - getnamo/hydra-ue4: Hydra Plugin for Unreal Engine 4, and then fallow which and package sucess.
I compare the diff between my plugin and hydrax plugin, I found my plugin include “UnrealEd,EditorStyle,LevelEditor” module. and had compile error on “Development_Game” configuration mode. and the error like this:

1>EXEC : error : Exception thrown while processing dependent modules of CoolPlugin
1> Exception thrown while processing dependent modules of UnrealEd
1> Exception thrown while processing dependent modules of AnimGraph
1> Exception thrown while processing dependent modules of GraphEditor
1> Exception thrown while processing dependent modules of KismetWidgets
1> Exception thrown while processing dependent modules of BlueprintGraph
1> Exception thrown while processing dependent modules of KismetCompiler
1> Exception thrown while processing dependent modules of MovieSceneTools
1> Exception thrown while processing dependent modules of AssetTools
1> Exception thrown while processing dependent modules of TextureEditor
1> Exception thrown while processing dependent modules of MainFrame
1> Exception thrown while processing dependent modules of DeviceProfileEditor
1> Exception thrown while processing dependent modules of LevelEditor
1> Exception thrown while processing dependent modules of WebBrowser
1> Exception thrown while processing dependent modules of CEF3Utils
1>EXEC : error : Couldn’t find module rules file for module ‘CEF3’.

how can i deal with this? Thanks.