Skip to content

Commit a95819b

Browse files
author
Vic Shóstak
committed
Fix frontend name option (lit, lit-ts)
1 parent dce09c4 commit a95819b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ cgapp deploy [OPTION]
158158
- `svelte` — generated template with a common Svelte app.
159159
- `svelte-ts` — generated template with a TypeScript version of the Svelte app.
160160
- Frontend template with [Lit][lit_url] web components:
161-
- `lit-element` — generated template with a common Lit app.
162-
- `lit-element-ts` — generated template a TypeScript version of the Lit app.
161+
- `lit` — generated template with a common Lit app.
162+
- `lit-ts` — generated template a TypeScript version of the Lit app.
163163

164164
> ☝️ Frontend part will be generated using awesome tool [Vite.js][vitejs_url]
165165
> under the hood. So, you'll always get the latest version of `React`,

pkg/registry/defaults.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
// CLIVersion version of Create Go App CLI.
14-
const CLIVersion string = "4.0.0"
14+
const CLIVersion string = "4.0.1"
1515

1616
// Variables struct for Ansible variables (inventory, hosts).
1717
type Variables struct {
@@ -75,8 +75,8 @@ var (
7575
"vue-ts",
7676
"svelte",
7777
"svelte-ts",
78-
"lit-element",
79-
"lit-element-ts",
78+
"lit",
79+
"lit-ts",
8080
},
8181
Default: "none",
8282
PageSize: 16,

0 commit comments

Comments
 (0)