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 f3b3625 commit 8e0f15dCopy full SHA for 8e0f15d
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