@@ -68,7 +68,8 @@ The actual shell your script is run within is platform dependent. By default,
6868on Unix-like systems it is the ` /bin/sh ` command, on Windows it is
6969` cmd.exe ` .
7070The actual shell referred to by ` /bin/sh ` also depends on the system.
71- You can customize the shell with the ` script-shell ` configuration.
71+ You can customize the shell with the
72+ [ ` script-shell ` config] ( /using-npm/config#script-shell ) .
7273
7374Scripts are run from the root of the package folder, regardless of what the
7475current working directory is when ` npm run ` is called. If you want your
@@ -85,7 +86,8 @@ forgotten.
8586
8687### Workspaces support
8788
88- You may use the ` workspace ` or ` workspaces ` configs in order to run an
89+ You may use the [ ` workspace ` ] ( /using-npm/config#workspace ) or
90+ [ ` workspaces ` ] ( /using-npm/config#workspaces ) configs in order to run an
8991arbitrary command from a package's ` "scripts" ` object in the context of the
9092specified workspaces. If no ` "command" ` is provided, it will list the available
9193scripts for each of these configured workspaces.
@@ -114,7 +116,8 @@ Assuming the workspace configuration is properly set up at the root level
114116```
115117
116118And that each of the configured workspaces has a configured ` test ` script,
117- we can run tests in all of them using the ` workspaces ` config:
119+ we can run tests in all of them using the
120+ [ ` workspaces ` config] ( /using-npm/config#workspaces ) :
118121
119122```
120123npm test --workspaces
0 commit comments