Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/docs/content/using-npm/workspaces.md')
-rw-r--r--deps/npm/docs/content/using-npm/workspaces.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/deps/npm/docs/content/using-npm/workspaces.md b/deps/npm/docs/content/using-npm/workspaces.md
index ae834c0cc7e..baf84f543f0 100644
--- a/deps/npm/docs/content/using-npm/workspaces.md
+++ b/deps/npm/docs/content/using-npm/workspaces.md
@@ -176,6 +176,22 @@ npm run test --workspaces
Will run the `test` script in both `./packages/a` and `./packages/b`.
+Commands will be run in each workspace in the order they appear in your `package.json`
+
+```
+{
+ "workspaces": [ "packages/a", "packages/b" ]
+}
+```
+
+Order of run is different with:
+
+```
+{
+ "workspaces": [ "packages/b", "packages/a" ]
+}
+```
+
### Ignoring missing scripts
It is not required for all of the workspaces to implement scripts run with the `npm run` command.