* 读取 plugin.json 配置
(pluginPath: string)
| 120 | * 读取 plugin.json 配置 |
| 121 | */ |
| 122 | private readPluginConfig(pluginPath: string): any { |
| 123 | const pluginJsonPath = path.join(pluginPath, 'plugin.json') |
| 124 | return JSON.parse(fsSync.readFileSync(pluginJsonPath, 'utf-8')) |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * 判断指定 feature 是否设置了 mainHide |
no outgoing calls
no test coverage detected