From 853366799e5612b7d3b651dc65dd17d2610f62f0 Mon Sep 17 00:00:00 2001 From: Daniel Barber Date: Fri, 3 Jan 2025 13:25:04 -0600 Subject: [PATCH] Update nixpacks.toml Use Yarn instead of NPM as that's what our lock file is for. --- nixpacks.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixpacks.toml b/nixpacks.toml index 7a98ab3..fea2eea 100644 --- a/nixpacks.toml +++ b/nixpacks.toml @@ -2,4 +2,4 @@ aptPkgs = ["...", "build-essential"] [phases.build] -cmds = ["mix compile", "mix ecto.setup", "pushd assets && npm install && popd"] +cmds = ["mix compile", "mix ecto.setup", "pushd assets && yarn install && popd"]