December 2017
Beginner
372 pages
10h 32m
English
Now, let's build our Trello application and see what Angular CLI does. To build our application, from the command line, navigate to the path where you have the code. Building an application in dev mode is the default behavior of the ng build command so we can just run the following command in our Terminal:
ng build
When you run this command, you will see Angular CLI building the code and then the result of the build as shown here:

The Angular CLI created 10 files, 2 each for the inline, vendor, main, polyfill, and style bundles. One file is associated with the bundle and the second is for sourcemaps. If ...
Read now
Unlock full access