blob: dd7c248ea548daa33fa09648248a5734139807fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
var togglePlugin = require('./togglePlugin');
var isDefaultPlugin = require('./isDefaultPlugin');
/**
* Remove a plugin from a book's configuration
* @param {Config} config
* @param {String} plugin
* @return {Config}
*/
function removePlugin(config, pluginName) {
var deps = config.getPluginDependencies();
// For default plugin, we have to disable it instead of removing from the list
if (isDefaultPlugin(pluginName)) {
return togglePlugin(config, pluginName, false);
}
// Remove the dependency from the list
deps = deps.filter(function(dep) {
return dep.getName() === pluginName;
});
return config.setPluginDependencies(deps);
}
module.exports = removePlugin;
|