From 7f6d330f1cef3347b08cf2b19616d2e445937715 Mon Sep 17 00:00:00 2001 From: Zohaib Irshad Date: Sun, 1 Feb 2026 19:11:25 +0500 Subject: [PATCH] hi, this pr adds tooling for reproducible builds as a follow up to #151. changes: - add devbox.json to pin node.js version for consistent environment fixes #163 --- console/devbox.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 console/devbox.json diff --git a/console/devbox.json b/console/devbox.json new file mode 100644 index 00000000..0d8fb817 --- /dev/null +++ b/console/devbox.json @@ -0,0 +1,11 @@ +{ + "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/main/.schema/devbox.schema.json", + "packages": [ + "nodejs@22.12.0" + ], + "shell": { + "scripts": { + "build": "npm ci && npm run build" + } + } +} \ No newline at end of file