From 1d1fb31a615960876849cb91e85dfe7960f692d8 Mon Sep 17 00:00:00 2001 From: notgne2 Date: Sun, 14 Feb 2021 03:38:09 -0700 Subject: [PATCH] explicitly run webpack-cli with nodejs --- wand.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wand.nix b/wand.nix index 93a424e..d0e7e6d 100644 --- a/wand.nix +++ b/wand.nix @@ -237,7 +237,7 @@ let installPhase = '' mkdir -p $out - ${nodeSource}/node_modules/webpack-cli/bin/cli.js --mode production + ${pkgs.nodejs}/bin/node ${nodeSource}/node_modules/webpack-cli/bin/cli.js --mode production mv dist/* $out ''; };