source: trip-planner-front/node_modules/@angular/cli/commands/run-long.md@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 787 bytes
Line 
1Architect is the tool that the CLI uses to perform complex tasks such as compilation, according to provided configurations.
2The CLI commands run Architect targets such as `build`, `serve`, `test`, and `lint`.
3Each named target has a default configuration, specified by an "options" object,
4and an optional set of named alternate configurations in the "configurations" object.
5
6For example, the "serve" target for a newly generated app has a predefined
7alternate configuration named "production".
8
9You can define new targets and their configuration options in the "architect" section
10of the `angular.json` file.
11If you do so, you can run them from the command line using the `ng run` command.
12Execute the command using the following format.
13
14```
15ng run project:target[:configuration]
16```
Note: See TracBrowser for help on using the repository browser.