Merge pull request #23474 from backstage/freben/templar

tweak the cli template descriptions a bit for clarity
This commit is contained in:
Patrik Oldsberg
2024-03-11 17:02:37 +01:00
committed by GitHub
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),
}),