Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions content/cli/v6/using-npm/scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ Scripts are run by passing the line as a script argument to `sh`.
If the script exits with a code other than 0, then this will abort the
process.

Note that these script files don't have to be nodejs or even
javascript programs. They just have to be some kind of executable
Note that these script files don't have to be Node.js or even
JavaScript programs. They just have to be some kind of executable
file.

### Hook Scripts
Expand Down
4 changes: 2 additions & 2 deletions content/cli/v7/using-npm/scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ Scripts are run by passing the line as a script argument to `sh`.
If the script exits with a code other than 0, then this will abort the
process.

Note that these script files don't have to be nodejs or even
javascript programs. They just have to be some kind of executable
Note that these script files don't have to be Node.js or even
JavaScript programs. They just have to be some kind of executable
file.

### Best Practices
Expand Down
2 changes: 1 addition & 1 deletion content/cli/v7/using-npm/workspaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Workspaces are usually defined via the `workspaces` property of the

Given the above `package.json` example living at a current working
directory `.` that contains a folder named `workspace-a` that itself contains
a `package.json` inside it, defining a nodejs package, e.g:
a `package.json` inside it, defining a Node.js package, e.g:

```
.
Expand Down