summaryrefslogtreecommitdiffstats
path: root/doc/languages-frameworks
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-03-19 00:02:39 +0000
committerGitHub <noreply@github.com>2024-03-19 00:02:39 +0000
commitb727e4cb210367459e4299f8521d9c781fe70fc5 (patch)
treef460a448c282dbb70c1fce34320965ae8ac1c600 /doc/languages-frameworks
parent871a7b4f289bc83ab456f8915a9fe6af5d603da1 (diff)
parent7c0bd382c72689b24a726b03b3436963e911c787 (diff)
Merge staging-next into staging
Diffstat (limited to 'doc/languages-frameworks')
-rw-r--r--doc/languages-frameworks/javascript.section.md4
1 files 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: