Skip to content

Commit

Permalink
fix: missing svc
Browse files Browse the repository at this point in the history
  • Loading branch information
kirinnee committed Jan 11, 2025
1 parent 870db83 commit d0b00f3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cyan/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ StartTemplateWithLambda(async (i: IInquirer, d: IDeterminism): Promise<Cyan> =>

const capitalize = (s: string) => s.charAt(0).toUpperCase() + s.slice(1);
const namespace = capitalize(platform) + capitalize(service);
const svc = capitalize(service);

const desc = await i.text('Description', "Nuget Package's Description");

Expand All @@ -35,6 +36,7 @@ StartTemplateWithLambda(async (i: IInquirer, d: IDeterminism): Promise<Cyan> =>
config: {
vars: {
name,
svc,
platform,
service,
namespace,
Expand Down

0 comments on commit d0b00f3

Please sign in to comment.