-
-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
…nto volar-ts-plugin-compatibility
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
node-version: "18.x" | ||
cache: pnpm | ||
|
||
# Get projects set up | ||
|
@@ -31,7 +31,7 @@ jobs: | |
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
node-version: "18.x" | ||
cache: pnpm | ||
|
||
# Get projects set up | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
node-version: "18.x" | ||
registry-url: "https://registry.npmjs.org" | ||
cache: pnpm | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
node-version: "18.x" | ||
registry-url: "https://registry.npmjs.org" | ||
cache: pnpm | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
node-version: "18.x" | ||
registry-url: "https://registry.npmjs.org" | ||
cache: pnpm | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
node-version: "18.x" | ||
registry-url: "https://registry.npmjs.org" | ||
cache: pnpm | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "16.x" | ||
node-version: "18.x" | ||
registry-url: "https://registry.npmjs.org" | ||
cache: pnpm | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<script lang="ts"> | ||
export let value: 'foo' | 'bar'; | ||
</script> | ||
|
||
<button on:click={() => value = 'foo'}>foo</button> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script lang="ts"> | ||
import Component from './Component.svelte'; | ||
let checked = false; | ||
let value: 'foo' | 'bar' = 'foo'; | ||
</script> | ||
|
||
<input type="checkbox" bind:checked> | ||
|
||
{#if checked === true} | ||
checked | ||
{/if} | ||
|
||
{#if value === 'bar'} | ||
bar | ||
{/if} | ||
|
||
<Component bind:value></Component> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.