diff --git a/modules/dynamic-plugins/proc-export-third-party-plugins-rhdh.adoc b/modules/dynamic-plugins/proc-export-third-party-plugins-rhdh.adoc index d217271d66..18510f90e8 100644 --- a/modules/dynamic-plugins/proc-export-third-party-plugins-rhdh.adoc +++ b/modules/dynamic-plugins/proc-export-third-party-plugins-rhdh.adoc @@ -35,11 +35,14 @@ The following is an example of exporting a dynamic plugin with shared and embedd .Example dynamic plugin export with shared and embedded packages [source,terminal] ---- -npx @janus-idp/cli@latest export-dynamic-plugin --shared-package '!/@backstage/plugin-notifications/' <1> --embed-package @backstage/plugin-notifications-backend <2> +npx @janus-idp/cli@latest export-dynamic-plugin --shared-package '!/@backstage/plugin-notifications/' --embed-package @backstage/plugin-notifications-backend ---- + -<1> `@backstage/plugin-notifications` package is treated as a private dependency and is bundled in the dynamic plugin package, despite being in the `@backstage` scope. -<2> `@backstage/plugin-notifications-backend` package is marked as an embedded dependency and is bundled in the dynamic plugin package. +In the previous example: ++ +* `@backstage/plugin-notifications` package is treated as a private dependency and is bundled in the dynamic plugin package, despite being in the `@backstage` scope. ++ +* `@backstage/plugin-notifications-backend` package is marked as an embedded dependency and is bundled in the dynamic plugin package. Front-end plugins:: +