Skip to content

Commit

Permalink
upgrade sveltekit
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Oct 21, 2023
1 parent 518eab2 commit 26544c9
Show file tree
Hide file tree
Showing 7 changed files with 383 additions and 686 deletions.
8 changes: 4 additions & 4 deletions packages/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-replace": "^3.0.0",
"@sveltejs/kit": "next",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "^1.26.0",
"@sveltejs/adapter-auto": "^2.1.0",
"codemirror": "^5.49.2",
"npm-run-all": "^4.1.5",
"prism-svelte": "^0.5.0",
Expand All @@ -40,11 +40,11 @@
"rollup": "^2.58.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.49.0",
"svelte": "^3.59.2",
"svelte-json-tree": "^0.0.7",
"typeface-catamaran": "^0.0.72",
"typeface-roboto": "^0.0.75",
"unist-util-visit": "^2.0.1",
"vite": "^3.0.4"
"vite": "^4.5.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import { dev } from '$app/env';
import { dev } from '$app/environment';
export let status;
export let error;
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import { page } from '$app/stores';
import { onMount } from 'svelte';
import { fade } from 'svelte/transition';
import docs from './_docs.svtext';
import Cheatsheet from '../components/Cheatsheet.svx';
import docs from '../_docs.svtext';
import Cheatsheet from '../../components/Cheatsheet.svx';
let root;
let scrollY = 0;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script>
import { onMount } from "svelte";
import Repl from "../components/Repl/Repl.svelte";
import { code_1, code_2, code_3, code_4, code_5 } from "./_source.js";
import Repl from "../../components/Repl/Repl.svelte";
import { code_1, code_2, code_3, code_4, code_5 } from "../_source.js";
let repl;
let checked = "input";
Expand Down
Loading

0 comments on commit 26544c9

Please sign in to comment.