mirror of https://github.com/embarklabs/embark.git
refactor pluginPath
This commit is contained in:
parent
e0e3887aaf
commit
b34ddf32cf
|
@ -54,7 +54,7 @@ Plugins.prototype.createPlugin = function(pluginName, pluginConfig) {
|
||||||
};
|
};
|
||||||
|
|
||||||
Plugins.prototype.loadInternalPlugin = function(pluginName, pluginConfig) {
|
Plugins.prototype.loadInternalPlugin = function(pluginName, pluginConfig) {
|
||||||
var pluginPath = utils.joinPath('../modules/', pluginName, 'index.js');
|
var pluginPath = fs.embarkPath('lib/modules/' + pluginName);
|
||||||
var plugin = require(pluginPath);
|
var plugin = require(pluginPath);
|
||||||
|
|
||||||
var pluginWrapper = new Plugin({
|
var pluginWrapper = new Plugin({
|
||||||
|
@ -62,7 +62,7 @@ Plugins.prototype.loadInternalPlugin = function(pluginName, pluginConfig) {
|
||||||
pluginModule: plugin,
|
pluginModule: plugin,
|
||||||
pluginConfig: pluginConfig || {},
|
pluginConfig: pluginConfig || {},
|
||||||
logger: this.logger,
|
logger: this.logger,
|
||||||
pluginPath: fs.embarkPath('lib/modules/' + pluginName),
|
pluginPath: pluginPath,
|
||||||
interceptLogs: this.interceptLogs,
|
interceptLogs: this.interceptLogs,
|
||||||
events: this.events,
|
events: this.events,
|
||||||
config: this.config,
|
config: this.config,
|
||||||
|
|
Loading…
Reference in New Issue