Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #44 from PizzaFactory/prp-update-to-the-upstream
Browse files Browse the repository at this point in the history
Update to the upstream
  • Loading branch information
monaka authored Aug 21, 2019
2 parents 7b493cc + 9a0ac2b commit 1263ddb
Show file tree
Hide file tree
Showing 2 changed files with 513 additions and 437 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -327,4 +327,15 @@ class PluginDeployerHandlerImpl implements PluginDeployerHandler {
}

}

async getPluginDependencies(plugin: PluginDeployerEntry): Promise<string[]> {
const metadata = await this.reader.getPluginMetadata(plugin.path());
if (metadata) {
if (metadata.model.extensionDependencies) {
return metadata.model.extensionDependencies;
}
}
return [];
}

}
Loading

0 comments on commit 1263ddb

Please sign in to comment.