summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorteutat3s <10206665+teutat3s@users.noreply.github.com>2023-05-05 19:18:40 +0200
committerteutat3s <10206665+teutat3s@users.noreply.github.com>2023-06-28 23:49:29 +0200
commit3a2cf5b3f5723a62fc93b1d13052b8bd6ca31a11 (patch)
tree57f1457c21028347d07fa7dcdcd5ee387cb58aaa /doc
parent0d8145a5d81ebf6698077b21042380a3a66a11c7 (diff)
buildNpmPackage: document dontNpmBuild option
document dontNpmInstall option
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/javascript.section.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/languages-frameworks/javascript.section.md b/doc/languages-frameworks/javascript.section.md
index fdb570ebc3204..dc06ea665c559 100644
--- a/doc/languages-frameworks/javascript.section.md
+++ b/doc/languages-frameworks/javascript.section.md
@@ -196,6 +196,8 @@ buildNpmPackage rec {
 * `npmDepsHash`: The output hash of the dependencies for this project. Can be calculated in advance with [`prefetch-npm-deps`](#javascript-buildNpmPackage-prefetch-npm-deps).
 * `makeCacheWritable`: Whether to make the cache writable prior to installing dependencies. Don't set this unless npm tries to write to the cache directory, as it can slow down the build.
 * `npmBuildScript`: The script to run to build the project. Defaults to `"build"`.
+* `dontNpmBuild`: Option to disable running the build script. Set to `true` if the package does not have a build script. Defaults to `false`. Alternatively, setting `buildPhase` explicitly also disables this.
+* `dontNpmInstall`: Option to disable running `npm install`. Defaults to `false`. Alternatively, setting `installPhase` explicitly also disables this.
 * `npmFlags`: Flags to pass to all npm commands.
 * `npmInstallFlags`: Flags to pass to `npm ci` and `npm prune`.
 * `npmBuildFlags`: Flags to pass to `npm run ${npmBuildScript}`.