getPackages
plugin.projectStructure.getPackages(workspacePath?: string): Promise<ProjectStructurePackagesResponse>
Get all packages in the workspace
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
workspacePath | string | No |
Returns
Promise<ProjectStructurePackagesResponse>
Example
import plugin from '@codebolt/plugin-sdk';
const result = await plugin.projectStructure.getPackages();
console.log(result);