Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/lib/content/using-npm/scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ during `npm publish` and `npm pack`
* As of `npm@7` these scripts run in the background.
To see the output, run with: `--foreground-scripts`.

* **In workspaces, prepare scripts run concurrently** across all packages. If you have interdependent packages where one must build before another, consider using `--foreground-scripts` (which can be set in `.npmrc` with `foreground-scripts=true`) to run scripts sequentially, or structure your build differently.

**prepublish** (DEPRECATED)
* Does not run during `npm publish`, but does run during `npm ci` and `npm install`.
See below for more info.
Expand Down
Loading