about summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2023-11-09 18:51:35 +0100
committerYt <happysalada@tuta.io>2023-11-16 11:57:48 +0000
commit7fb490674fbe789dafe09f018ae7470143ed5a3c (patch)
tree005c93baa48d52e4859541d1bd27230ee4418de6 /doc
parent54f00576aa6139a9d54062d0edc2fb31423f0ffb (diff)
buildNpmPackage: allow passing npmDeps
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/javascript.section.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/languages-frameworks/javascript.section.md b/doc/languages-frameworks/javascript.section.md
index 0bb9959a5105b..152974b465a54 100644
--- a/doc/languages-frameworks/javascript.section.md
+++ b/doc/languages-frameworks/javascript.section.md
@@ -210,6 +210,7 @@ In the default `installPhase` set by `buildNpmPackage`, it uses `npm pack --json
 * `npmPruneFlags`: Flags to pass to `npm prune`. Defaults to the value of `npmInstallFlags`.
 * `makeWrapperArgs`: Flags to pass to `makeWrapper`, added to executable calling the generated `.js` with `node` as an interpreter. These scripts are defined in `package.json`.
 * `nodejs`: The `nodejs` package to build against, using the corresponding `npm` shipped with that version of `node`. Defaults to `pkgs.nodejs`.
+* `npmDeps`: The dependencies used to build the npm package. Especially useful to not have to recompute workspace depedencies.
 
 #### prefetch-npm-deps {#javascript-buildNpmPackage-prefetch-npm-deps}