Skip to content

Commit

Permalink
Bump prettier-plugin-svelte from 2.6.0 to 2.7.0 (#472)
Browse files Browse the repository at this point in the history
* Bump prettier-plugin-svelte from 2.6.0 to 2.7.0

Bumps [prettier-plugin-svelte](https://github.com/sveltejs/prettier-plugin-svelte) from 2.6.0 to 2.7.0.
- [Release notes](https://github.com/sveltejs/prettier-plugin-svelte/releases)
- [Changelog](https://github.com/sveltejs/prettier-plugin-svelte/blob/master/CHANGELOG.md)
- [Commits](sveltejs/prettier-plugin-svelte@v2.6.0...v2.7.0)

---
updated-dependencies:
- dependency-name: prettier-plugin-svelte
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* run format

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Merilynn Bandy <31383109+furudean@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and furudean committed Jun 6, 2022
1 parent b246a02 commit 7e516b2
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions src/routes/session/_SettingsModal.svelte
Expand Up @@ -196,15 +196,19 @@
id="light-theme-choice"
name="theme-choice"
bind:group={$settings.theme}
value="light">Light</Radio
value="light"
>
Light
</Radio>

<Radio
id="dark-theme-choice"
name="theme-choice"
bind:group={$settings.theme}
value="dark">Dark</Radio
value="dark"
>
Dark
</Radio>
</fieldset>

<hr />
Expand Down
12 changes: 9 additions & 3 deletions src/routes/setup/index.svelte
Expand Up @@ -36,20 +36,26 @@
id="kana-type-hiragana-choice"
name="kana-type"
bind:group={$gameConfig.kanaType}
value="hiragana">Hiragana</Radio
value="hiragana"
>
Hiragana
</Radio>
<Radio
id="kana-type-katakana-choice"
name="kana-type"
bind:group={$gameConfig.kanaType}
value="katakana">Katakana</Radio
value="katakana"
>
Katakana
</Radio>
<Radio
id="kana-type-both-choice"
name="kana-type"
bind:group={$gameConfig.kanaType}
value="both">Both</Radio
value="both"
>
Both
</Radio>
</div>
</fieldset>
<section class="columns">
Expand Down

0 comments on commit 7e516b2

Please sign in to comment.