tweak the cli template descriptions a bit for clarity

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2024-03-11 15:25:59 +01:00
parent 87e9ed3ccc
commit f39dfd344b
4 changed files with 11 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Tweak the descriptions of the CLI templates
@@ -38,7 +38,8 @@ type Options = {
export const backendModule = createFactory<Options>({
name: 'backend-module',
description: 'A new backend module',
description:
'A new backend module that extends an existing backend plugin with additional features',
optionsDiscovery: async () => ({
codeOwnersPath: await getCodeownersFilePath(paths.targetRoot),
}),
@@ -31,7 +31,8 @@ type Options = {
export const nodeLibraryPackage = createFactory<Options>({
name: 'node-library',
description: 'A new node-library package',
description:
'A new node-library package, exporting shared functionality for backend plugins and modules',
optionsDiscovery: async () => ({
codeOwnersPath: await getCodeownersFilePath(paths.targetRoot),
}),
@@ -31,7 +31,8 @@ type Options = {
export const webLibraryPackage = createFactory<Options>({
name: 'web-library',
description: 'A new web-library package',
description:
'A new web-library package, exporting shared functionality for frontend plugins',
optionsDiscovery: async () => ({
codeOwnersPath: await getCodeownersFilePath(paths.targetRoot),
}),