Skip to content

Commit

Permalink
Fix frontend name option (lit, lit-ts)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vic Shóstak committed Jun 28, 2023
1 parent dce09c4 commit a95819b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ cgapp deploy [OPTION]
- `svelte` — generated template with a common Svelte app.
- `svelte-ts` — generated template with a TypeScript version of the Svelte app.
- Frontend template with [Lit][lit_url] web components:
- `lit-element` — generated template with a common Lit app.
- `lit-element-ts` — generated template a TypeScript version of the Lit app.
- `lit` — generated template with a common Lit app.
- `lit-ts` — generated template a TypeScript version of the Lit app.

> ☝️ Frontend part will be generated using awesome tool [Vite.js][vitejs_url]
> under the hood. So, you'll always get the latest version of `React`,
Expand Down
6 changes: 3 additions & 3 deletions pkg/registry/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

// CLIVersion version of Create Go App CLI.
const CLIVersion string = "4.0.0"
const CLIVersion string = "4.0.1"

// Variables struct for Ansible variables (inventory, hosts).
type Variables struct {
Expand Down Expand Up @@ -75,8 +75,8 @@ var (
"vue-ts",
"svelte",
"svelte-ts",
"lit-element",
"lit-element-ts",
"lit",
"lit-ts",
},
Default: "none",
PageSize: 16,
Expand Down

0 comments on commit a95819b

Please sign in to comment.