From 82edbb5835cc7a34ee10c1b6ba1726c1ae07a5b2 Mon Sep 17 00:00:00 2001 From: Jamil Date: Thu, 22 Jun 2023 12:47:45 -0700 Subject: [PATCH] Use pnpm for asset setup too (#1681) --- elixir/apps/web/mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elixir/apps/web/mix.exs b/elixir/apps/web/mix.exs index bd0a48cc9..49aab150c 100644 --- a/elixir/apps/web/mix.exs +++ b/elixir/apps/web/mix.exs @@ -82,7 +82,7 @@ defmodule Web.MixProject do [ setup: ["deps.get", "assets.setup", "assets.build"], "assets.setup": [ - "cmd cd assets && yarn install --frozen-lockfile", + "cmd cd assets && CI=true pnpm i", "tailwind.install --if-missing", "esbuild.install --if-missing" ],