Skip to content

Commit

Permalink
upgrade dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed Jun 27, 2024
1 parent 76796bc commit 9314bd5
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 55 deletions.
38 changes: 17 additions & 21 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@ryanatkn/fuz_template",
"version": "0.0.1",
"description": "a static web app and Node library template with TypeScript, Svelte, SvelteKit, Vite, esbuild, Fuz, and Gro",
"icon": "",
"glyph": "",
"public": true,
"homepage": "https://template.fuz.dev/",
"repository": "https://github.com/ryanatkn/fuz_template",
Expand All @@ -21,11 +21,11 @@
"dist"
],
"devDependencies": {
"@ryanatkn/belt": "^0.22.0",
"@ryanatkn/belt": "^0.23.0",
"@ryanatkn/eslint-config": "^0.1.3",
"@ryanatkn/fuz": "^0.105.1",
"@ryanatkn/gro": "^0.124.0",
"@ryanatkn/moss": "^0.6.0",
"@ryanatkn/fuz": "^0.105.2",
"@ryanatkn/gro": "^0.125.1",
"@ryanatkn/moss": "^0.6.1",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.17",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
Expand Down
4 changes: 2 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
import Mreows, {items} from '$routes/Mreows.svelte';
let mreows: Array<{icon: string}> | undefined = $state([random_item(items), items[4]]);
let mreows: Array<{glyph: string}> | undefined = $state([random_item(items), items[4]]);
</script>

<main>
<section class="box">
<header>
<h1 class="mt_xl2">fuz_template</h1>
</header>
<Card href="{base}/about" icon={mreows ? mreows[0].icon : ''}>about</Card>
<Card href="{base}/about" icon={mreows ? mreows[0].glyph : ''}>about</Card>
</section>
<Mreows bind:mreows />
</main>
Expand Down
40 changes: 20 additions & 20 deletions src/routes/Mreows.svelte
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<script context="module" lang="ts">
export interface Mreow {
icon: string;
glyph: string;
}
export const items: Mreow[] = [
{icon: '🐵'},
{icon: '🐶'},
{icon: '🐺'},
{icon: '🦊'},
{icon: '🐱'},
{icon: '🦁'},
{icon: '🐯'},
{icon: '🐴'},
{icon: '🦄'},
{icon: '🦓'},
{icon: '🐮'},
{icon: '🐭'},
{icon: '🐹'},
{icon: '🐰'},
{icon: '🐻'},
{icon: '🐼'},
{icon: '🐸'},
{icon: '🐲'},
{glyph: '🐵'},
{glyph: '🐶'},
{glyph: '🐺'},
{glyph: '🦊'},
{glyph: '🐱'},
{glyph: '🦁'},
{glyph: '🐯'},
{glyph: '🐴'},
{glyph: '🦄'},
{glyph: '🦓'},
{glyph: '🐮'},
{glyph: '🐭'},
{glyph: '🐹'},
{glyph: '🐰'},
{glyph: '🐻'},
{glyph: '🐼'},
{glyph: '🐸'},
{glyph: '🐲'},
];
</script>

Expand Down Expand Up @@ -91,7 +91,7 @@
x={item.x}
y={item.y}
scale={item.scale + Math.cos(i) / 2.5}
><span style:font-size="{item.fontSize}px">{item.mreow.icon}</span></Positioned
><span style:font-size="{item.fontSize}px">{item.mreow.glyph}</span></Positioned
>{/each}
</div>

Expand Down
4 changes: 2 additions & 2 deletions src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<h1 class="mt_xl2">fuz_template</h1>
</header>
<div style:--size="var(--size_xl)">
<Breadcrumb>{package_json.icon}</Breadcrumb>
<Breadcrumb>{package_json.glyph}</Breadcrumb>
</div>
</section>
<section class="box w_100 mb_lg">
Expand All @@ -27,7 +27,7 @@
</section>
<section class="box">
<Library_Footer {pkg} root_url="https://www.fuz.dev/">
<div class="mb_xl"><Breadcrumb>{package_json.icon}</Breadcrumb></div>
<div class="mb_xl"><Breadcrumb>{package_json.glyph}</Breadcrumb></div>
</Library_Footer>
</section>
</main>
Expand Down
10 changes: 5 additions & 5 deletions src/routes/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const package_json = {
version: '0.0.1',
description:
'a static web app and Node library template with TypeScript, Svelte, SvelteKit, Vite, esbuild, Fuz, and Gro',
icon: '❄',
glyph: '❄',
public: true,
homepage: 'https://template.fuz.dev/',
repository: 'https://github.com/ryanatkn/fuz_template',
Expand All @@ -23,11 +23,11 @@ export const package_json = {
},
files: ['dist'],
devDependencies: {
'@ryanatkn/belt': '^0.22.0',
'@ryanatkn/belt': '^0.23.0',
'@ryanatkn/eslint-config': '^0.1.3',
'@ryanatkn/fuz': '^0.105.1',
'@ryanatkn/gro': '^0.124.0',
'@ryanatkn/moss': '^0.6.0',
'@ryanatkn/fuz': '^0.105.2',
'@ryanatkn/gro': '^0.125.1',
'@ryanatkn/moss': '^0.6.1',
'@sveltejs/adapter-static': '^3.0.2',
'@sveltejs/kit': '^2.5.17',
'@sveltejs/vite-plugin-svelte': '^3.1.1',
Expand Down

0 comments on commit 9314bd5

Please sign in to comment.