From 90ba8eb688d5908c9af7fc464b492dfb6c0ec587 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Tue, 31 Mar 2026 22:21:52 +0200 Subject: [PATCH 1/2] chore(deps): harden bun install settings --- bunfig.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 bunfig.toml diff --git a/bunfig.toml b/bunfig.toml new file mode 100644 index 0000000000..033c9df871 --- /dev/null +++ b/bunfig.toml @@ -0,0 +1,9 @@ +telemetry = false + +[env] +file = false + +[install] +linker = "isolated" +frozenLockfile = true +minimumReleaseAge = 604800 # 7 days From 2875e0f1cce4588b20aaacf5f83a3859f356a305 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Wed, 1 Apr 2026 00:00:02 +0200 Subject: [PATCH 2/2] fix(deps): explicitly install @inertiajs/core --- bun.lock | 1 + package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/bun.lock b/bun.lock index 9d95609c91..6c96b50eef 100644 --- a/bun.lock +++ b/bun.lock @@ -6,6 +6,7 @@ "devDependencies": { "@eslint/js": "^10.0.1", "@ianvs/prettier-plugin-sort-imports": "^4.7.1", + "@inertiajs/core": "^3.0.0", "@inertiajs/svelte": "^3.0.0", "@inertiajs/vite": "^3.0.0", "@sveltejs/vite-plugin-svelte": "^7.0.0", diff --git a/package.json b/package.json index 75a7ed2f02..bd1058c4d3 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "devDependencies": { "@eslint/js": "^10.0.1", "@ianvs/prettier-plugin-sort-imports": "^4.7.1", + "@inertiajs/core": "^3.0.0", "@inertiajs/svelte": "^3.0.0", "@inertiajs/vite": "^3.0.0", "@sveltejs/vite-plugin-svelte": "^7.0.0",