Skip to content

Commit

Permalink
Merge pull request #18 from x0k/bump-deps
Browse files Browse the repository at this point in the history
Bump deps
  • Loading branch information
x0k authored Dec 5, 2024
2 parents d619123 + 9ceab3e commit 0a715ac
Show file tree
Hide file tree
Showing 600 changed files with 1,443 additions and 877 deletions.
20 changes: 10 additions & 10 deletions apps/ppp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "4.0.0-beta.2",
"@astrojs/svelte": "6.0.0-beta.1",
"@astrojs/tailwind": "^5.1.2",
"@astrojs/mdx": "4.0.1",
"@astrojs/svelte": "7.0.1",
"@astrojs/tailwind": "^5.1.3",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"astro": "5.0.0-beta.4",
"astro-icon": "^1.1.1",
"astro": "5.0.3",
"astro-icon": "^1.1.4",
"compiler": "workspace:*",
"dotnet-runtime": "workspace:*",
"gleam-runtime": "workspace:*",
Expand All @@ -35,18 +35,18 @@
"python-runtime": "workspace:*",
"ruby-runtime": "workspace:*",
"rust-runtime": "workspace:*",
"tailwindcss": "^3.4.13",
"tailwindcss": "^3.4.16",
"testing": "workspace:*",
"typescript-runtime": "workspace:*"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.8",
"@iconify-json/lucide": "^1.2.17",
"@iconify/svelte": "^4.0.2",
"@tailwindcss/typography": "^0.5.15",
"@types/color": "^3.0.6",
"@types/color": "^4.2.0",
"color": "^4.2.3",
"daisyui": "^4.12.13",
"svelte": "5.0.0-next.264",
"daisyui": "^4.12.14",
"svelte": "5.7.0",
"vite-plugin-cross-origin-isolation": "^0.1.6",
"vite-plugin-static-copy": "catalog:"
}
Expand Down
2 changes: 1 addition & 1 deletion apps/ppp/src/adapters/runtime/dotnet/compiler-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export const makeDotnetCompiler: CompilerFactory = async (ctx, out) => {
if (files.length !== 1) {
throw new Error("Compilation of multiple files is not implemented");
}
const runtime = runtimeFactory.create(files[0].content);
const runtime = await runtimeFactory.create(files[0].content);
return new DotnetProgram(runtime);
},
[Symbol.dispose]() {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export class DotnetTestCompilerFactory {
if (files.length !== 1) {
throw new Error("Compilation of multiple files is not implemented");
}
const runtime = runtimeFactory.create(
const runtime = await runtimeFactory.create(
files[0].content,
executionCode
);
Expand Down
Loading

0 comments on commit 0a715ac

Please sign in to comment.