Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/rodydavis/vite into main
Browse files Browse the repository at this point in the history
  • Loading branch information
rodydavis committed Sep 25, 2021
2 parents 06d86e4 + f3f45cd commit 493f162
Show file tree
Hide file tree
Showing 27 changed files with 770 additions and 46 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ Supported template presets include:
- `react-ts`
- `preact`
- `preact-ts`
- `lit-element`
- `lit-element-ts`
- `lit`
- `lit-ts`
- `svelte`
- `svelte-ts`

Expand Down
4 changes: 2 additions & 2 deletions packages/create-vite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ $ pnpm dlx create-vite

### Bug Fixes

* **create-app:** lit-element templates package.json ([#3435](https://github.com/vitejs/vite/issues/3435)) ([74986d3](https://github.com/vitejs/vite/commit/74986d3d053aabe7ec3de20c987e9df309c684b2))
* **create-app:** lit templates package.json ([#3435](https://github.com/vitejs/vite/issues/3435)) ([74986d3](https://github.com/vitejs/vite/commit/74986d3d053aabe7ec3de20c987e9df309c684b2))



Expand Down Expand Up @@ -341,7 +341,7 @@ $ pnpm dlx create-vite
### Features

* bump vuedx versions ([fa1229a](https://github.com/vitejs/vite/commit/fa1229abc5602f14cf88470b7337e085164a989e))
* lit-element templates ([830f3d3](https://github.com/vitejs/vite/commit/830f3d34f58cfa7680e1b2d753a023bcb1018ba2)), closes [#1684](https://github.com/vitejs/vite/issues/1684)
* lit templates ([830f3d3](https://github.com/vitejs/vite/commit/830f3d34f58cfa7680e1b2d753a023bcb1018ba2)), closes [#1684](https://github.com/vitejs/vite/issues/1684)



Expand Down
4 changes: 2 additions & 2 deletions packages/create-vite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ Currently supported template presets include:
- `react-ts`
- `preact`
- `preact-ts`
- `lit-element`
- `lit-element-ts`
- `lit`
- `lit-ts`
- `svelte`
- `svelte-ts`

Expand Down
6 changes: 3 additions & 3 deletions packages/create-vite/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,16 @@ const FRAMEWORKS = [
]
},
{
name: 'lit-element',
name: 'lit',
color: lightRed,
variants: [
{
name: 'lit-element',
name: 'lit',
display: 'JavaScript',
color: yellow
},
{
name: 'lit-element-ts',
name: 'lit-ts',
display: 'TypeScript',
color: blue
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Lit-Element App</title>
<title>Vite + Lit App</title>
<script type="module" src="/src/my-element.ts"></script>
</head>
<body>
Expand Down
Loading

0 comments on commit 493f162

Please sign in to comment.