Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 28 additions & 28 deletions apps/ppp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@
"test": "npm run test:unit -- --run"
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"dotnet-runtime": "workspace:*",
"esm-env": "^1.2.2",
"gleam-runtime": "workspace:*",
"go-runtime": "workspace:*",
"java-runtime": "workspace:*",
"javascript-runtime": "workspace:*",
"libs": "workspace:*",
"marked": "^17.0.0",
"monaco-editor": "^0.54.0",
"marked": "^17.0.1",
"monaco-editor": "^0.55.1",
"monaco-editor-textmate": "^4.0.0",
"monaco-textmate": "^3.0.1",
"monaco-vim": "^0.4.2",
"monaco-vim": "^0.4.4",
"onigasm": "^2.2.5",
"php-runtime": "workspace:*",
"python-runtime": "workspace:*",
Expand All @@ -40,38 +40,38 @@
"typescript-runtime": "workspace:*"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.1",
"@iconify-json/lucide": "^1.2.74",
"@iconify-json/vscode-icons": "^1.2.36",
"@inlang/paraglide-js": "^2.5.0",
"@eslint/compat": "^2.0.2",
"@eslint/js": "^9.39.2",
"@iconify-json/lucide": "^1.2.89",
"@iconify-json/vscode-icons": "^1.2.40",
"@inlang/paraglide-js": "^2.10.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.48.5",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@sveltejs/kit": "^2.50.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"@tailwindcss/vite": "^4.1.18",
"@types/color": "^4.2.0",
"@types/node": "^24.10.1",
"@vitest/browser-playwright": "^4.0.12",
"daisyui": "^5.5.5",
"eslint": "^9.39.1",
"@vitest/browser-playwright": "^4.0.18",
"daisyui": "^5.5.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.13.0",
"globals": "^16.5.0",
"playwright": "^1.56.1",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.7.1",
"svelte": "^5.43.12",
"svelte-check": "^4.3.4",
"tailwindcss": "^4.1.17",
"eslint-plugin-svelte": "^3.14.0",
"globals": "^17.3.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.50.0",
"svelte-check": "^4.3.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"unplugin-icons": "^22.5.0",
"typescript-eslint": "^8.54.0",
"unplugin-icons": "^23.0.1",
"vite": "catalog:",
"vite-plugin-devtools-json": "^1.0.0",
"vite-plugin-static-copy": "catalog:",
"vitest": "catalog:",
"vitest-browser-svelte": "^2.0.1"
"vitest-browser-svelte": "^2.0.2"
}
}
1 change: 0 additions & 1 deletion apps/ppp/project.inlang/.gitignore

This file was deleted.

66 changes: 33 additions & 33 deletions flake.lock

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

14 changes: 7 additions & 7 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-25.05";
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-25.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs-old.url = "github:NixOS/nixpkgs/nixos-21.11"; # For Node.js 12
nixpkgs2111.url = "github:NixOS/nixpkgs/nixos-21.11";
mk.url = "github:x0k/mk";
};
outputs =
{
self,
nixpkgs,
nixpkgs-unstable,
nixpkgs-old,
nixpkgs2111,
mk,
}:
let
Expand All @@ -24,7 +24,7 @@
pkgs-unstable = import nixpkgs-unstable {
inherit system;
};
pkgs-old = import nixpkgs-old {
pkgs2111 = import nixpkgs2111 {
inherit system;
config = {
permittedInsecurePackages = [ "nodejs-12.22.12" ];
Expand Down Expand Up @@ -55,9 +55,9 @@
pkgs.nodejs_24
pkgs.bun
pkgs.pnpm
pkgs.go_1_25
pkgs.go_1_24
pkgs-unstable.gleam
pkgs.python314
pkgs.python315
pkgs.dotnet-sdk_10
];
shellHook = ''
Expand All @@ -81,7 +81,7 @@
};
java = pkgs.mkShell {
buildInputs = [
pkgs-old.nodejs-12_x
pkgs2111.nodejs-12_x
pkgs.jdk8
];
shellHook = ''
Expand Down
2 changes: 1 addition & 1 deletion mkfile
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ gleam/:
pnpm run build
artifacts: compiler/* stdlib/*
compiler/:
version="v1.13.0"
version="v1.14.0"
name="gleam-${version}-browser"
download:
if [ ! -f "${name}.tar.gz" ]; then
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Krasilnikov Roman",
"private": true,
"type": "module",
"packageManager": "pnpm@10.15.1",
"packageManager": "pnpm@10.28.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
Expand All @@ -14,8 +14,8 @@
},
"devDependencies": {
"@total-typescript/tsconfig": "^1.0.4",
"only-allow": "^1.2.1",
"turbo": "^2.6.1",
"only-allow": "^1.2.2",
"turbo": "^2.8.3",
"typescript": "^5.9.3"
},
"pnpm": {
Expand Down
Binary file not shown.
Git LFS file not shown

This file was deleted.

Binary file not shown.
10 changes: 5 additions & 5 deletions packages/dotnet-runtime/src/vendor/compiler/dotnet.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var e=!1;const t=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,
"mainAssemblyName": "compiler",
"applicationEnvironment": "Development",
"resources": {
"hash": "sha256-+vWE4qpCKicJzBvdpcc8lrv40Htwgs0pEg/aqDgSQ+E=",
"hash": "sha256-wPbeirqrh+yVYJ0vaq34fzf2AQtZ7Vgzfe8/n4z6QGQ=",
"jsModuleNative": [
{
"name": "dotnet.native.xanz2e7ksm.js"
Expand Down Expand Up @@ -967,15 +967,15 @@ var e=!1;const t=async()=>WebAssembly.validate(new Uint8Array([0,97,115,109,1,0,
},
{
"virtualPath": "compiler.wasm",
"name": "compiler.c0oahebakd.wasm",
"integrity": "sha256-DHGckjSg8u09BGBsTN06vsVf3rzM/Qi6bPbMsJpMe0k="
"name": "compiler.7qlc8bbs0o.wasm",
"integrity": "sha256-/7yfOqKAg4QST4D3cKkNIBh14j0oehqmAhY2XmB7a+U="
}
],
"pdb": [
{
"virtualPath": "compiler.pdb",
"name": "compiler.0ycdege2jf.pdb",
"integrity": "sha256-yPA40WSrYHgX0iMBK/UrlLgm/FvN4sB6O7gXGB7p+sA="
"name": "compiler.e5171s17q9.pdb",
"integrity": "sha256-bp12cpHqEiG9QVv5RUMd4BlxoIHY5MQuOeXsSQtSoBM="
}
],
"satelliteResources": {
Expand Down
2 changes: 1 addition & 1 deletion packages/dotnet-runtime/src/vendor/lib/compiler.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion packages/gleam-runtime/src/vendor/compiler/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Compiler WASM

```shell
```sh
# Install the build tool with cargo or brew etc
cargo install wasm-pack

Expand Down
Loading