docs(aio): fix typo in filename (packages.json --> package.json) (#20377)

PR Close #20377
This commit is contained in:
Marcelo Melo 2017-11-12 15:18:09 -02:00 committed by Jason Aden
parent 3caae94261
commit e5c4371d72
1 changed files with 3 additions and 3 deletions

View File

@ -28,11 +28,11 @@ you already have projects running on your machine that use other versions of nod
Both `npm` and `yarn` install packages identified in a [**package.json**](https://docs.npmjs.com/files/package.json) file. Both `npm` and `yarn` install packages identified in a [**package.json**](https://docs.npmjs.com/files/package.json) file.
The CLI `ng new` command creates a default `packages.json` file for your project. The CLI `ng new` command creates a default `package.json` file for your project.
This `packages.json` specifies _a starter set of packages_ that work well together and This `package.json` specifies _a starter set of packages_ that work well together and
jointly support many common application scenarios. jointly support many common application scenarios.
You will add packages to `packages.json` as your application evolves. You will add packages to `package.json` as your application evolves.
You may even remove some. You may even remove some.
This guide focuses on the most important packages in the starter set. This guide focuses on the most important packages in the starter set.