Technical requirements
The most up-to-date versions of the sample code for the book are on GitHub at the following linked repository. The repository contains the final and completed state of the code. You can verify your progress at the end of this chapter by looking for the end-of-chapter snapshot of code under the projects
folder.
For Chapter 4:
- Clone the repo: https://github.com/duluca/lemon-mart.
- Execute
npm install
on the root folder to install dependencies. - The end state of the project is reflected at:
projects/stage7
- Add the stage name to any
ng
command to act only on that stage:npx ng build stage7
Note that the dist/stage7
folder at the root of the repository will contain the compiled result.
Beware that the source code provided in the book and the version on GitHub are likely to be different. The ecosystem around these projects is ever-evolving. Between changes to how the Angular...