From 027f1a475dbaffe08f0773f9a8329f8d8894eaf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martynas=20Mickevi=C4=8Dius?= Date: Wed, 3 Jun 2026 16:37:02 +0300 Subject: [PATCH] cook-cli: build js during preBuild Otherwise editor.bundle.js is not included in the package and the web editor does not load in the cook-cli webserver. --- pkgs/by-name/co/cook-cli/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/co/cook-cli/package.nix b/pkgs/by-name/co/cook-cli/package.nix index f15596b28d36..e441de418fe3 100644 --- a/pkgs/by-name/co/cook-cli/package.nix +++ b/pkgs/by-name/co/cook-cli/package.nix @@ -44,6 +44,7 @@ rustPlatform.buildRustPackage (finalAttrs: { preBuild = '' npm run build-css + npm run build-js ''; meta = {