We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88cc5de commit e443fc4Copy full SHA for e443fc4
lib/services/plugins-service.ts
@@ -184,7 +184,7 @@ export class PluginsService implements IPluginsService {
184
let pluginData: any = {};
185
pluginData.name = cacheData.name;
186
pluginData.version = cacheData.version;
187
- pluginData.fullPath = path.dirname(this.getPackageJsonFilePathForModule(cacheData.name));
+ pluginData.fullPath = cacheData.directory || path.dirname(this.getPackageJsonFilePathForModule(cacheData.name));
188
pluginData.isPlugin = !!cacheData.nativescript;
189
pluginData.pluginPlatformsFolderPath = (platform: string) => path.join(pluginData.fullPath, "platforms", platform);
190
0 commit comments