From 290c16532c5e11f357cd48da7bfd072d5cbd0e0f Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 18 Mar 2024 11:29:47 +0200 Subject: [PATCH] doc/mkYarnPackage: document better distPhase and doDist --- doc/languages-frameworks/javascript.section.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/languages-frameworks/javascript.section.md b/doc/languages-frameworks/javascript.section.md index c148070ad244..7a1b9d9f8de3 100644 --- a/doc/languages-frameworks/javascript.section.md +++ b/doc/languages-frameworks/javascript.section.md @@ -315,10 +315,10 @@ buildPhase = '' ''; ``` -The dist phase is also trying to build a binary, the only way to override it is with: +The `distPhase` is packing the package's dependencies in a tarball using `yarn pack`. You can disable it using: ```nix -distPhase = "true"; +doDist = false; ``` The configure phase can sometimes fail because it makes many assumptions which may not always apply. One common override is: