Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 0c2fa19

Browse files
authored
Merge pull request #27 from kaznovac/patch-3
reference @vercel/ncc instead of deprecated @zeit/ncc
2 parents d100844 + ac1451a commit 0c2fa19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

responses/16_using-ncc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
We typically don't commit a `node_modules` folder in a repository. These can often grow to be huge if your project has many dependencies. Because of the way Node works this folder is a necessary evil, but there is a way to get rid of it!
44

5-
First you need to install a tool called [ncc](https://github.com/zeit/ncc). You'll want to install this tool globally so that you can use as if it's any other CLI tool on your machine.
5+
First you need to install a tool called [ncc](https://github.com/vercel/ncc). You'll want to install this tool globally so that you can use as if it's any other CLI tool on your machine.
66

77
What **ncc** does is take all the dependencies within your project and compile them into a single JavaScript file. This allows you to avoid committing the `node_modules` folder in your actions source code.
88

99
**Install ncc**
10-
`npm install -g @zeit/ncc`
10+
`npm install -g @vercel/ncc`
1111

1212
**Using ncc**
1313
When you use ncc:

0 commit comments

Comments
 (0)