Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulBlanche committed Aug 20, 2023
1 parent a88eff6 commit b1a8405
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion doc/frugal.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { googleFonts } from "$dep/frugal/plugins/googleFonts.ts";
import { Config, DenoExporter, UpstashCache } from "$dep/frugal/mod.ts";
import { docLatestRewrite } from "$dep/frugal/doc/src/middlewares/docLatestRewrite.ts";

//kikette
export default {
self: import.meta.url,
outdir: "./dist/",
Expand Down
1 change: 0 additions & 1 deletion doc/src/pages/blog/splash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ async function splashTransform(src: string, dest: string) {

const data = await Deno.readFile(src);

//TOTO TATA
await ImageMagick.read(data, async (img) => {
const geometry = new MagickGeometry("900x512^");
img.resize(geometry);
Expand Down
1 change: 0 additions & 1 deletion doc/src/pages/home/CounterIsland.script.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { hydrate } from "$dep/frugal/runtime/preact.client.ts";
//import "$dep/frugal/mod.ts";
import { Counter } from "./Counter.tsx";

export const NAME = "Counter";
Expand Down
4 changes: 2 additions & 2 deletions example/svelte/HomePage2.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
const scripts = assets.get("script");
</script>

<head>
<svelte:head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content="frugal" />
Expand All @@ -18,7 +18,7 @@
{#each scripts as src}
<script type="module" src={src}></script>
{/each}
</head>
</svelte:head>

<main>
<a href="/">home</a>
Expand Down
2 changes: 0 additions & 2 deletions src/runtime/svelte/hydrate/hydrateIsland.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ export function hydrateIsland(

const html = root.querySelector("[data-svelte-slot]")?.innerHTML;

console.log(Hydratable);

new Hydratable({
target: root,
hydrate: true,
Expand Down

0 comments on commit b1a8405

Please sign in to comment.