From 2927e4265947524dcc4cbb3a5034d3b4dc793955 Mon Sep 17 00:00:00 2001 From: pheralb Date: Sun, 31 Aug 2025 14:45:42 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Trying=20nixpacks=20con?= =?UTF-8?q?fig=20for=20Node=20&=20PNPM=20setup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nixpacks.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 nixpacks.toml diff --git a/nixpacks.toml b/nixpacks.toml new file mode 100644 index 0000000..b7d1e32 --- /dev/null +++ b/nixpacks.toml @@ -0,0 +1,17 @@ +providers = ["node"] + +[variables] +NODE_VERSION = "22.17.0" + +[phases.setup] +nixPkgs = ["coreutils"] + +[phases.build] +cmds = [ + "npm install -g corepack", + "corepack enable", + "corepack prepare pnpm@10.13.1 --activate" +] + +[phases.install] +cmds = ["pnpm install"] \ No newline at end of file