Skip to content

Commit

Permalink
renamed branch master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
lmammino committed Jan 1, 2024
1 parent 94f6aee commit 704fd93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
env:
CI: true

- name: Release to GH pages if on master
if: github.ref == 'refs/heads/master'
- name: Release to GH pages if on main
if: github.ref == 'refs/heads/main'
uses: crazy-max/ghaction-github-pages@v1
with:
target_branch: gh-pages
Expand Down
2 changes: 1 addition & 1 deletion src/blog/articles/installing-node-js/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ In short, this is "the good" and "the bad" of following this approach:

## Install Node.js from source

If you are brave enough to be willing to build and install Node.js from source, your first stop should be the [official documentation on how to build Node.js from source](https://github.com/nodejs/node/blob/master/BUILDING.md).
If you are brave enough to be willing to build and install Node.js from source, your first stop should be the [official documentation on how to build Node.js from source](https://github.com/nodejs/node/blob/main/BUILDING.md).

Here is a brief summary of all the steps involved:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,6 @@ When we accumulate an entire stream we are effectively defeating all the advanta

This is all for this article, feel free to [reach out to me on Twitter](https://twitter.com/loige) if you found this article interesting and if you think you learned something useful.

If you are curious, you can also [read the code of the `stream/consumers` module](https://github.com/nodejs/node/blob/master/lib/stream/consumers.js), it's actually a really thin layer (less than 100 lines) and you can learn a trick or two by doing that.
If you are curious, you can also [read the code of the `stream/consumers` module](https://github.com/nodejs/node/blob/main/lib/stream/consumers.js), it's actually a really thin layer (less than 100 lines) and you can learn a trick or two by doing that.

See you in the next article!

0 comments on commit 704fd93

Please sign in to comment.